mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 11:36:05 +00:00
16 lines
302 B
SQL
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'
|
|
);
|