Files
MyClub/database/migrations/20251023174500_set_user_role_default_fan.up.sql
T
Tomas Dvorak 70ea0c3c91 dev day #69
2025-10-23 22:26:50 +02:00

8 lines
282 B
SQL

-- Set default role to 'fan' and backfill existing records
ALTER TABLE IF EXISTS users ALTER COLUMN role SET DEFAULT 'fan';
-- Backfill NULL/empty/user -> fan (do not touch admin/editor)
UPDATE users
SET role = 'fan'
WHERE role IS NULL OR btrim(role) = '' OR lower(role) = 'user';