Files
foodlinkk-command-center/migrations/021_locale_preferences.sql
T
2026-06-09 10:41:13 +00:00

4 lines
190 B
SQL

-- 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;