add destinations
This commit is contained in:
@@ -13,10 +13,12 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('standalone_dockers', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('uuid')->unique();
|
||||
$table->string('network');
|
||||
|
||||
$table->foreignId('server_id');
|
||||
$table->unique(['server_id', 'network']);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('swarm_dockers', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('uuid')->unique();
|
||||
|
||||
$table->foreignId('server_id');
|
||||
|
||||
Reference in New Issue
Block a user