mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
INA-5 | Updated migration (is_deleted added, archived removed)
This commit is contained in:
parent
3b26246e1b
commit
fabc009f5d
@ -25,7 +25,7 @@ class CreateSchedulersTable extends Migration
|
|||||||
Schema::create('schedulers', function (Blueprint $table) {
|
Schema::create('schedulers', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->boolean('paused')->default(false);
|
$table->boolean('paused')->default(false);
|
||||||
$table->boolean('archived')->default(false);
|
$table->boolean('is_deleted')->default(false);
|
||||||
$table->string('repeat_every');
|
$table->string('repeat_every');
|
||||||
$table->timestamp('start_from');
|
$table->timestamp('start_from');
|
||||||
$table->timestamp('scheduled_run');
|
$table->timestamp('scheduled_run');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user