From 4b2694ce76fea06bb982fab936eebca79dc0b909 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 6 Nov 2014 13:17:58 -0600 Subject: [PATCH] Fix file. --- ...p => 2014_10_12_100000_create_password_resets_table.php} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename database/migrations/{2014_10_12_100000_create_password_reminders_table.php => 2014_10_12_100000_create_password_resets_table.php} (71%) diff --git a/database/migrations/2014_10_12_100000_create_password_reminders_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php similarity index 71% rename from database/migrations/2014_10_12_100000_create_password_reminders_table.php rename to database/migrations/2014_10_12_100000_create_password_resets_table.php index dfbcf83f..679df38f 100644 --- a/database/migrations/2014_10_12_100000_create_password_reminders_table.php +++ b/database/migrations/2014_10_12_100000_create_password_resets_table.php @@ -3,7 +3,7 @@ use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; -class CreatePasswordRemindersTable extends Migration { +class CreatePasswordResetsTable extends Migration { /** * Run the migrations. @@ -12,7 +12,7 @@ class CreatePasswordRemindersTable extends Migration { */ public function up() { - Schema::create('password_reminders', function(Blueprint $table) + Schema::create('password_resets', function(Blueprint $table) { $table->string('email')->index(); $table->string('token')->index(); @@ -27,7 +27,7 @@ class CreatePasswordRemindersTable extends Migration { */ public function down() { - Schema::drop('password_reminders'); + Schema::drop('password_resets'); } }