remove unique from name

This commit is contained in:
Andras Bacsai 2023-05-05 13:05:52 +02:00
parent 96b9f8213c
commit cefb9e825d

View File

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