Skip to content
This repository was archived by the owner on Jul 25, 2021. It is now read-only.

Migrations

Amish Shah edited this page Oct 24, 2020 · 2 revisions

Halloween Update (24th October)

Update profiles to have courses as a varchar rather than an enum.

ALTER TABLE profile ALTER COLUMN course TYPE varchar(100);
UPDATE profile SET course='Computer Science (Human Computer Interaction)' WHERE course='Human Computer Interaction';
DROP TYPE profile_course_enum;

Clone this wiki locally