Remove unnecessary things for now

This commit is contained in:
Andras Bacsai 2023-03-27 20:50:02 +02:00
parent 79f3b7c4b8
commit 8d530d5f6f
4 changed files with 1 additions and 5 deletions

View File

@ -14,7 +14,6 @@ public function up(): void
Schema::create('standalone_dockers', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->string('network');
$table->foreignId('server_id');
$table->timestamps();

View File

@ -14,8 +14,7 @@ public function up(): void
Schema::create('swarm_dockers', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->string('network');
$table->foreignId('server_id');
$table->timestamps();
});

View File

@ -18,7 +18,6 @@ public function run(): void
$server_1 = Server::find(1);
StandaloneDocker::create([
'id' => 1,
'network' => 'coolify',
'server_id' => $server_1->id,
]);
}

View File

@ -19,7 +19,6 @@ public function run(): void
$server_1 = Server::find(1);
SwarmDocker::create([
'id' => 1,
'network' => 'coolify-swarms',
'server_id' => $server_1->id,
]);
}