-- Add website widgets and mobile app feature flags to plans table
-- Migration: Add website_widgets_enabled and mobile_app_enabled columns
-- Date: 2025-01-XX

ALTER TABLE plans ADD COLUMN website_widgets_enabled BOOLEAN NOT NULL DEFAULT false;
ALTER TABLE plans ADD COLUMN mobile_app_enabled BOOLEAN NOT NULL DEFAULT false;

COMMENT ON COLUMN plans.website_widgets_enabled IS 'Whether users on this plan can access Website Widgets feature';
COMMENT ON COLUMN plans.mobile_app_enabled IS 'Whether users on this plan can access Mobile App feature';
