remove unique from name
This commit is contained in:
		@@ -14,7 +14,7 @@ return new class extends Migration
 | 
				
			|||||||
        Schema::create('local_persistent_volumes', function (Blueprint $table) {
 | 
					        Schema::create('local_persistent_volumes', function (Blueprint $table) {
 | 
				
			||||||
            $table->id();
 | 
					            $table->id();
 | 
				
			||||||
            $table->string('uuid')->unique();
 | 
					            $table->string('uuid')->unique();
 | 
				
			||||||
            $table->string('name')->unique();
 | 
					            $table->string('name');
 | 
				
			||||||
            $table->string('mount_path');
 | 
					            $table->string('mount_path');
 | 
				
			||||||
            $table->string('host_path')->nullable();
 | 
					            $table->string('host_path')->nullable();
 | 
				
			||||||
            $table->string('container_id')->nullable();
 | 
					            $table->string('container_id')->nullable();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user