Fix file.

This commit is contained in:
Taylor Otwell 2014-11-06 13:17:58 -06:00
parent 33efefa388
commit 4b2694ce76
1 changed files with 3 additions and 3 deletions

View File

@ -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 @@ public function up()
*/
public function down()
{
Schema::drop('password_reminders');
Schema::drop('password_resets');
}
}