unindex token

This commit is contained in:
halaei 2017-03-17 11:47:10 +03:30
parent d6ca0a6dc6
commit d6d98f9705

View File

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