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