teach/db/024_creative_pupil_levels.sql
Ramon 0841962824
All checks were successful
dev - build & deploy naar test / build-and-deploy (push) Successful in 44s
feat: voeg thematische kleurplaten toe (v0.4.65-beta)
2026-07-28 22:34:15 +02:00

7 lines
431 B
SQL

-- Kleurplaten gebruiken dezelfde klas-standaard-met-leerling-override als de
-- andere vakgebieden. Bestaande niveaukeuzes blijven ongewijzigd; alleen de
-- toegestane waarde 'creatief' wordt aan de constraint toegevoegd.
ALTER TABLE pupil_levels DROP CONSTRAINT IF EXISTS pupil_levels_subject_check;
ALTER TABLE pupil_levels
ADD CONSTRAINT pupil_levels_subject_check
CHECK (subject IN ('taal','rekenen','world','creatief'));