From d6d98f970500db7d30799991a587773a7103c510 Mon Sep 17 00:00:00 2001 From: halaei Date: Fri, 17 Mar 2017 11:47:10 +0330 Subject: [PATCH] unindex token --- .../2014_10_12_100000_create_password_resets_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php index 294c3ea4032..2afa8972d48 100644 --- a/database/migrations/2014_10_12_100000_create_password_resets_table.php +++ b/database/migrations/2014_10_12_100000_create_password_resets_table.php @@ -14,7 +14,7 @@ public function up() { Schema::create('password_resets', function (Blueprint $table) { $table->string('email')->index(); - $table->string('token')->index(); + $table->string('token'); $table->timestamp('created_at')->nullable(); }); }