Merge pull request #4180 from halaei/unindex-token

unindex token
This commit is contained in:
Taylor Otwell
2017-03-17 13:04:12 -05:00
committed by GitHub

View File

@@ -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();
}); });
} }