id(); $table->string('uuid')->unique(); $table->enum('status', ['success', 'failed', 'running'])->default('running'); $table->longText('message')->nullable(); $table->foreignId('scheduled_task_id'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('scheduled_task_executions'); } };