Files
modrinth/packages/app-lib/migrations/20260828120000_reset-synced-option-defaults.sql
T

16 lines
302 B
SQL

UPDATE sync_feature_settings
SET globally_enabled = 0, new_instance_default = 1
WHERE feature IN (
'command_history',
'multiplayer_servers',
'creative_hotbars'
);
UPDATE instance_sync_preferences
SET enabled = 1
WHERE feature IN (
'command_history',
'multiplayer_servers',
'creative_hotbars'
);