Yimaru-BackEnd/db/migrations/000077_lms_one_practice_per_parent.down.sql
Yared Yemane 8dd1d40a16 feat: limit Learn English parents to one LMS practice each
Reject creating a second practice on the same course, module, or lesson with 409 Conflict, and enforce the rule in the database via unique partial indexes.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-09 04:28:14 -07:00

4 lines
165 B
SQL

DROP INDEX IF EXISTS idx_lms_practices_one_per_lesson;
DROP INDEX IF EXISTS idx_lms_practices_one_per_module;
DROP INDEX IF EXISTS idx_lms_practices_one_per_course;