DB update

This commit is contained in:
2026-05-23 21:42:21 +02:00
parent 97fd7cd0da
commit 6ed0a5b93a
@@ -20,7 +20,7 @@ return new class extends Migration {
$table->string('name')->unique();
$table->string('execution_type');
$table->time('schedule_time')->nullable();
$table->timestamp('last_run')->nullable();
$table->json('last_run')->nullable();
$table->timestamps();
$table->foreign('execution_type')->references('slug')->on('cron_task_types')->cascadeOnDelete()->cascadeOnUpdate();