Files

4 lines
190 B
SQL
Raw Permalink Normal View History

2026-06-09 10:41:13 +00:00
-- UI locale preference (nl | en)
ALTER TABLE user_ui_preferences ADD COLUMN IF NOT EXISTS locale VARCHAR(8) DEFAULT 'nl';
UPDATE user_ui_preferences SET locale = 'nl' WHERE locale IS NULL;