Fix file.
This commit is contained in:
parent
33efefa388
commit
4b2694ce76
|
@ -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');
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue