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();