Remove unnecessary things for now
This commit is contained in:
parent
79f3b7c4b8
commit
8d530d5f6f
@ -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();
|
||||
|
@ -14,7 +14,6 @@ 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();
|
||||
|
@ -18,7 +18,6 @@ public function run(): void
|
||||
$server_1 = Server::find(1);
|
||||
StandaloneDocker::create([
|
||||
'id' => 1,
|
||||
'network' => 'coolify',
|
||||
'server_id' => $server_1->id,
|
||||
]);
|
||||
}
|
||||
|
@ -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,
|
||||
]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user