id(); $table->string('uuid')->unique(); $table->boolean('enabled')->default(true); $table->string('name'); $table->string('command'); $table->string('frequency'); $table->string('container')->nullable(); $table->timestamps(); $table->foreignId('application_id')->nullable(); $table->foreignId('service_id')->nullable(); $table->foreignId('team_id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('scheduled_tasks'); } };