get deployment plan

This commit is contained in:
2025-05-22 17:19:28 +01:00
parent bfe0f8eabf
commit 4051afca4e
6 changed files with 50 additions and 17 deletions

View File

@@ -10,6 +10,7 @@ return new class extends Migration
{
Schema::create('deployments', function (Blueprint $table) {
$table->id();
$table->string('hash')->unique();
$table->morphs('target'); // server, service, etc.
$table->string('status');
$table->dateTime('started_at')->nullable();