Files
heygermany-e2e-mrg1d1zl/db/postgres/0009-remove-redundant-transcript-fields.sql
e2e 59b4a7a404
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 09:21:21 +02:00

6 lines
294 B
SQL

-- Remove redundant transcript fields that can be calculated from hours
ALTER TABLE app.candidate_transcript
DROP COLUMN IF EXISTS has_theory_hours,
DROP COLUMN IF EXISTS has_practice_hours,
DROP COLUMN IF EXISTS ai_has_theory_hours,
DROP COLUMN IF EXISTS ai_has_practice_hours;