10 lines
168 B
MySQL
10 lines
168 B
MySQL
|
-- Revert camper:season_calendar_season_id_fkey from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.season_calendar
|
||
|
drop constraint if exists season_calendar_season_id_fkey
|
||
|
;
|
||
|
|
||
|
commit;
|