Browse Source

Merge pull request #4180 from halaei/unindex-token

unindex token
Taylor Otwell 7 years ago
parent
commit
2312580af8

+ 1 - 1
database/migrations/2014_10_12_100000_create_password_resets_table.php

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