id(); $table->string('name'); $table->string('mount_path'); $table->string('host_path')->nullable(); $table->string('container_id')->nullable(); $table->nullableMorphs('resource'); $table->unique(['name', 'resource_id', 'resource_type']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('local_persistent_volumes'); } };