fix: database schema

This commit is contained in:
Andras Bacsai
2023-09-24 11:56:32 +02:00
parent 2dcb7fec05
commit 66bc03b4cd
3 changed files with 5 additions and 3 deletions

View File

@@ -16,7 +16,8 @@ return new class extends Migration
$table->string('uuid')->unique();
$table->string('name');
$table->foreignId('server_id')->nullable();
$table->morphs('destination');
$table->foreignId('environment_id');
$table->timestamps();
});