mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-19 06:43:45 +02:00
Begin refactoring Tasks to be apart of the Scheduler system
This commit is contained in:
@@ -21,8 +21,8 @@ class CreateSchedulesTable extends Migration
|
||||
$table->string('cron_minute');
|
||||
$table->boolean('is_active');
|
||||
$table->boolean('is_processing');
|
||||
$table->timestamp('last_run_at');
|
||||
$table->timestamp('next_run_at');
|
||||
$table->timestamp('last_run_at')->nullable();
|
||||
$table->timestamp('next_run_at')->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
$table->foreign('server_id')->references('id')->on('servers')->onDelete('cascade');
|
||||
|
||||
Reference in New Issue
Block a user