Skip to content

Commit 956e577

Browse files
committed
Adds missing password_reset_tokens
1 parent 2b0394b commit 956e577

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

database/migrations/0001_01_01_000000_create_users_table.php

+7
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ public function up(): void
2222
$table->string('profile_photo_path', 2048)->nullable();
2323
$table->timestamps();
2424
});
25+
26+
Schema::create('password_reset_tokens', function (Blueprint $table) {
27+
$table->string('email')->primary();
28+
$table->string('token');
29+
$table->timestamp('created_at')->nullable();
30+
});
2531
}
2632

2733
/**
@@ -30,5 +36,6 @@ public function up(): void
3036
public function down(): void
3137
{
3238
Schema::dropIfExists('users');
39+
Schema::dropIfExists('password_reset_tokens');
3340
}
3441
};

0 commit comments

Comments
 (0)