You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
465 B
SQL
9 lines
465 B
SQL
-- Free revive quota for non-subscribers (MVP: 2 lifetime revives unless subscription_active).
|
|
|
|
ALTER TABLE heroes
|
|
ADD COLUMN IF NOT EXISTS revive_count INT NOT NULL DEFAULT 0,
|
|
ADD COLUMN IF NOT EXISTS subscription_active BOOLEAN NOT NULL DEFAULT FALSE;
|
|
|
|
COMMENT ON COLUMN heroes.revive_count IS 'Number of revives consumed (free tier capped at 2 without subscription).';
|
|
COMMENT ON COLUMN heroes.subscription_active IS 'When true, revive limit does not apply.';
|