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