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'); } }