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>
8 lines
307 B
SQL
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';
|