This commit is contained in:
Martin Folkerts 2024-01-30 14:03:07 +01:00
parent 98d9938e85
commit 71f557fbc0
2 changed files with 2 additions and 1 deletions

View file

@ -17,6 +17,7 @@ class User extends Authenticatable
use HasProfilePhoto;
use Notifiable;
use TwoFactorAuthenticatable;
use Notifiable;
/**
* The attributes that are mass assignable.

View file

@ -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');