Remove unnecessary things for now
This commit is contained in:
@@ -14,7 +14,6 @@ return new class extends Migration
|
|||||||
Schema::create('standalone_dockers', function (Blueprint $table) {
|
Schema::create('standalone_dockers', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('uuid')->unique();
|
$table->string('uuid')->unique();
|
||||||
$table->string('network');
|
|
||||||
|
|
||||||
$table->foreignId('server_id');
|
$table->foreignId('server_id');
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ return new class extends Migration
|
|||||||
Schema::create('swarm_dockers', function (Blueprint $table) {
|
Schema::create('swarm_dockers', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('uuid')->unique();
|
$table->string('uuid')->unique();
|
||||||
$table->string('network');
|
|
||||||
|
|
||||||
$table->foreignId('server_id');
|
$table->foreignId('server_id');
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ class StandaloneDockerSeeder extends Seeder
|
|||||||
$server_1 = Server::find(1);
|
$server_1 = Server::find(1);
|
||||||
StandaloneDocker::create([
|
StandaloneDocker::create([
|
||||||
'id' => 1,
|
'id' => 1,
|
||||||
'network' => 'coolify',
|
|
||||||
'server_id' => $server_1->id,
|
'server_id' => $server_1->id,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ class SwarmDockerSeeder extends Seeder
|
|||||||
$server_1 = Server::find(1);
|
$server_1 = Server::find(1);
|
||||||
SwarmDocker::create([
|
SwarmDocker::create([
|
||||||
'id' => 1,
|
'id' => 1,
|
||||||
'network' => 'coolify-swarms',
|
|
||||||
'server_id' => $server_1->id,
|
'server_id' => $server_1->id,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user