Commit 2312580a authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #4180 from halaei/unindex-token

unindex token
parents 1447a0ef d6d98f97
......@@ -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();
});
}
......
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