Skip to content

Commit 2312580

Browse files
authored
Merge pull request laravel#4180 from halaei/unindex-token
unindex token
2 parents 1447a0e + d6d98f9 commit 2312580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2014_10_12_100000_create_password_resets_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
{
1616
Schema::create('password_resets', function (Blueprint $table) {
1717
$table->string('email')->index();
18-
$table->string('token')->index();
18+
$table->string('token');
1919
$table->timestamp('created_at')->nullable();
2020
});
2121
}

0 commit comments

Comments
 (0)