camper/revert/campsite_type__bookable_nig...

11 lines
148 B
PL/PgSQL

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