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