Commit d6d98f97 authored by halaei's avatar halaei

unindex token

parent d6ca0a6d
...@@ -14,7 +14,7 @@ class CreatePasswordResetsTable extends Migration ...@@ -14,7 +14,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();
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment