Make password_resets.created_at nullable
Prevents MySQL assigning default CURRENT_TIMESTAMP Related issue: laravel/framework#11518
This commit is contained in:
@@ -15,7 +15,7 @@ class CreatePasswordResetsTable extends Migration
|
|||||||
Schema::create('password_resets', function (Blueprint $table) {
|
Schema::create('password_resets', function (Blueprint $table) {
|
||||||
$table->string('email')->index();
|
$table->string('email')->index();
|
||||||
$table->string('token')->index();
|
$table->string('token')->index();
|
||||||
$table->timestamp('created_at');
|
$table->timestamp('created_at')->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user