id(); $table->string('name'); $table->string('uuid')->unique(); $table->string('network'); $table->foreignId('server_id'); $table->unique(['server_id', 'network']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('standalone_dockers'); } };