tirbofish/kitgit
-- Per-user appearance preference: light | dark | system
users
ADD COLUMN IF NOT EXISTS theme TEXT NOT NULL DEFAULT 'system';
users
DROP CONSTRAINT IF EXISTS users_theme_check;
users
ADD CONSTRAINT users_theme_check CHECK (theme IN ('light', 'dark', 'system'));