INA-5 | Updated migration (is_deleted added, archived removed)
This commit is contained in:
parent
3b26246e1b
commit
fabc009f5d
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class CreateSchedulersTable extends Migration
|
|||
Schema::create('schedulers', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->boolean('paused')->default(false);
|
||||
$table->boolean('archived')->default(false);
|
||||
$table->boolean('is_deleted')->default(false);
|
||||
$table->string('repeat_every');
|
||||
$table->timestamp('start_from');
|
||||
$table->timestamp('scheduled_run');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue