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.
|
-- Subscription system: weekly subscription with expiry date.
|
|
ALTER TABLE heroes ADD COLUMN IF NOT EXISTS subscription_expires_at TIMESTAMPTZ;
|
|
|
|
-- Payment type for subscription purchases.
|
|
-- Existing payments table is reused with type = 'subscription_weekly'.
|