boolean('is_readonly')->default(false); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('local_persistent_volumes', function (Blueprint $table) { $table->dropColumn('is_readonly'); }); } };