From cefb9e825d47ebd52e3e13324e6b49c7440820a1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Fri, 5 May 2023 13:05:52 +0200 Subject: [PATCH] remove unique from name --- .../2023_04_03_111012_create_local_persistent_volumes_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2023_04_03_111012_create_local_persistent_volumes_table.php b/database/migrations/2023_04_03_111012_create_local_persistent_volumes_table.php index 3f6d7aa8b..e6f6c2e4a 100644 --- a/database/migrations/2023_04_03_111012_create_local_persistent_volumes_table.php +++ b/database/migrations/2023_04_03_111012_create_local_persistent_volumes_table.php @@ -14,7 +14,7 @@ public function up(): void Schema::create('local_persistent_volumes', function (Blueprint $table) { $table->id(); $table->string('uuid')->unique(); - $table->string('name')->unique(); + $table->string('name'); $table->string('mount_path'); $table->string('host_path')->nullable(); $table->string('container_id')->nullable();