Update the password resets table to match upstream laravel

This commit is contained in:
Kevin MacMartin 2017-09-26 13:13:42 -04:00
parent 15b4de1aec
commit fdec3a44f6

View file

@ -15,7 +15,7 @@ class CreatePasswordResetsTable extends Migration
{
Schema::create('password_resets', function(Blueprint $table) {
$table->string('email')->index();
$table->string('token')->index();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
}