diff --git a/database/migrations/2018_08_11_055429_create_password_resets_for_casebuilder_table.php b/database/migrations/2018_08_11_055429_create_password_resets_for_casebuilder_table.php index efef8dd..61b1868 100644 --- a/database/migrations/2018_08_11_055429_create_password_resets_for_casebuilder_table.php +++ b/database/migrations/2018_08_11_055429_create_password_resets_for_casebuilder_table.php @@ -13,7 +13,7 @@ class CreatePasswordResetsForCasebuilderTable extends Migration */ public function up() { - Schema::table('password_resets_for_casebuilder', function (Blueprint $table) { + Schema::create('password_resets_for_casebuilder', function (Blueprint $table) { $table->string('email')->index(); $table->string('token'); $table->timestamp('created_at')->nullable(); diff --git a/database/migrations/2018_08_11_055542_create_password_resets_for_admin_table.php b/database/migrations/2018_08_11_055542_create_password_resets_for_admin_table.php index aad68fd..98361ed 100644 --- a/database/migrations/2018_08_11_055542_create_password_resets_for_admin_table.php +++ b/database/migrations/2018_08_11_055542_create_password_resets_for_admin_table.php @@ -13,7 +13,7 @@ class CreatePasswordResetsForAdminTable extends Migration */ public function up() { - Schema::table('password_resets_for_admin', function (Blueprint $table) { + Schema::create('password_resets_for_admin', function (Blueprint $table) { $table->string('email')->index(); $table->string('token'); $table->timestamp('created_at')->nullable();