Commit 4b2694ce authored by Taylor Otwell's avatar Taylor Otwell

Fix file.

parent 33efefa3
......@@ -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');
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment