chahinebrini 6e34631246 feat(db): temporary default plan=legend while tier toggle is missing
UPDATE all existing profiles to legend + ALTER COLUMN default to legend
so internal testers can exercise premium paths until the settings toggle
is rebuilt. Revert via follow-up migration once the toggle is back.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-16 10:04:34 +02:00

8 lines
307 B
SQL

-- Temporary: while the plan-tier toggle is missing from settings, all users
-- get 'legend' so testers can exercise premium paths. Revert via follow-up
-- migration once the toggle is back.
UPDATE rebreak.profiles SET plan = 'legend';
ALTER TABLE rebreak.profiles ALTER COLUMN plan SET DEFAULT 'legend';