camper/revert/campsite_type__operating_da...

10 lines
149 B
PL/PgSQL

-- Revert camper:campsite_type__operating_dates from pg
begin;
alter table camper.campsite_type
drop column if exists operating_dates
;
commit;