id(); $table->foreignIdFor(Deployment::class); $table->longText('script'); $table->longText('logs')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('steps'); } };