INA-5 | Updated migration (is_deleted added, archived removed)

This commit is contained in:
Nikola Cirkovic 2022-05-26 04:17:09 +02:00
parent 3b26246e1b
commit fabc009f5d

View File

@ -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');