id(); $table->foreignId('project_id')->constrained()->onDelete('cascade'); $table->longText('input'); $table->longText('output'); $table->longText('cost'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('executions'); } };