camper/revert/campsite_type__check_in_out...

11 lines
173 B
PL/PgSQL

-- Revert camper:campsite_type__check_in_out from pg
begin;
alter table camper.campsite_type
drop column if exists check_in
, drop column if exists check_out
;
commit;