mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Update the password resets table to match upstream laravel
This commit is contained in:
parent
15b4de1aec
commit
fdec3a44f6
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||||
$table->timestamp('created_at')->nullable();
|
$table->timestamp('created_at')->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue