id(); $table->foreignIdFor(Deployment::class); $table->string('name'); $table->integer('order'); $table->string('status'); $table->longText('script'); $table->longText('logs')->nullable(); $table->text('secrets')->nullable(); $table->dateTime('started_at')->nullable(); $table->dateTime('finished_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('steps'); } };