step name

This commit is contained in:
2025-05-22 18:06:08 +01:00
parent bcc7645a8a
commit 8575712931
4 changed files with 29 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ return new class extends Migration
Schema::create('steps', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(Deployment::class);
$table->string('name');
$table->integer('order');
$table->string('status');
$table->longText('script');