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