From 71f557fbc03b1d3866d703b07b1e736553061305 Mon Sep 17 00:00:00 2001 From: Martin Folkerts Date: Tue, 30 Jan 2024 14:03:07 +0100 Subject: [PATCH] okay --- laravel_app/app/Models/User.php | 1 + .../2024_01_30_124700_create_password_reset_table.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/laravel_app/app/Models/User.php b/laravel_app/app/Models/User.php index 7f186c3..0611f75 100644 --- a/laravel_app/app/Models/User.php +++ b/laravel_app/app/Models/User.php @@ -17,6 +17,7 @@ class User extends Authenticatable use HasProfilePhoto; use Notifiable; use TwoFactorAuthenticatable; + use Notifiable; /** * The attributes that are mass assignable. diff --git a/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php b/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php index 4424ec8..a6abe20 100644 --- a/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php +++ b/laravel_app/database/migrations/2024_01_30_124700_create_password_reset_table.php @@ -11,7 +11,7 @@ */ public function up(): void { - Schema::create('password_resets', function (Blueprint $table) { + Schema::create('password_reset_tokens', function (Blueprint $table) { $table->string('email')->index(); $table->string('token')->index(); $table->timestamp('created_at');