This commit is contained in:
Andras Bacsai
2023-03-27 18:14:33 +02:00
parent 653efb6983
commit 7eeaf37873
11 changed files with 43 additions and 55 deletions

View File

@@ -15,6 +15,10 @@ return new class extends Migration
$table->id();
$table->string('uuid')->unique();
$table->string('name');
$table->morphs('destination');
$table->foreignId('environment_id');
$table->timestamps();
});
}