Skip to content
Snippets Groups Projects
Verified Commit 183ef647 authored by Bayu Samudra's avatar Bayu Samudra
Browse files

fix: adding migration abbr

parent a2d8a4d6
Branches
Tags
No related merge requests found
Pipeline #58010 passed with stages
in 1 minute and 18 seconds
-- +migrate Up
ALTER TABLE public.course
DROP CONSTRAINT IF EXISTS course_abbreviation_key;
-- +migrate Down
ALTER TABLE public.course
ADD CONSTRAINT course_abbreviation_key UNIQUE (abbreviation);
\ No newline at end of file
-- +migrate Up
ALTER TABLE public.course
DROP CONSTRAINT IF EXISTS course_abbreviation_key;
-- +migrate Down
ALTER TABLE public.course
ADD CONSTRAINT course_abbreviation_key UNIQUE (abbreviation);
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment