fix migration file error: Schema::table->Schema::create
This commit is contained in:
parent
e8b92eb473
commit
7d48d74cb1
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user