Fix failing migrations
This commit is contained in:
parent
3aa6e4e74e
commit
bc0d0fd6fa
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ class AddTasksTable extends Migration
|
||||||
$table->string('day_of_month')->default('*');
|
$table->string('day_of_month')->default('*');
|
||||||
$table->string('hour')->default('*');
|
$table->string('hour')->default('*');
|
||||||
$table->string('minute')->default('*');
|
$table->string('minute')->default('*');
|
||||||
$table->timestamp('last_run');
|
$table->timestamp('last_run')->nullable();
|
||||||
$table->timestamp('next_run');
|
$table->timestamp('next_run')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue