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 @@ return new class extends Migration
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 @@ return new class extends Migration
Schema::create('swarm_dockers', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->string('network');
$table->foreignId('server_id');
$table->timestamps();
});