camper/revert/campsite_type_option__per_n...

10 lines
149 B
PL/PgSQL

-- Revert camper:campsite_type_option__per_night from pg
begin;
alter table camper.campsite_type_option
drop column if exists per_night
;
commit;