rename password reset tokens table in skeleton

This commit is contained in:
Taylor Otwell 2023-01-30 16:53:14 -06:00
parent edcbe6de7c
commit a28ad2966d
2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ return [
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 60,
],

View File

@ -11,7 +11,7 @@ return new class extends Migration
*/
public function up(): void
{
Schema::create('password_resets', function (Blueprint $table) {
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
@ -23,6 +23,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('password_resets');
Schema::dropIfExists('password_reset_tokens');
}
};