7 lines
429 B
SQL
7 lines
429 B
SQL
-- Add beta plan to subscription_plan enum
|
|
-- This plan can only be manually activated (not through Stripe flows)
|
|
|
|
ALTER TYPE public.subscription_plan ADD VALUE IF NOT EXISTS 'beta';
|
|
|
|
-- Add comment to document that beta is manually activated only
|
|
COMMENT ON TYPE public.subscription_plan IS 'Subscription plans: none (no subscription), trial (trial period), standard (paid subscription), beta (manually activated beta access)';
|