LEARN_ENGLISH plans unlock LMS only; IELTS and DUOLINGO unlock matching exam-prep catalog courses. Enable category subscription gating, restrict programs to Learn English, and treat Duolingo subscriptions as non-expiring one-time purchases. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
205 B
SQL
7 lines
205 B
SQL
ALTER TABLE programs
|
|
DROP CONSTRAINT IF EXISTS chk_programs_category;
|
|
|
|
ALTER TABLE programs
|
|
ADD CONSTRAINT chk_programs_category
|
|
CHECK (category IN ('LEARN_ENGLISH', 'IELTS', 'DUOLINGO'));
|