camper/deploy/campsite_type__overflow_all...

11 lines
194 B
PL/PgSQL

-- Deploy camper:campsite_type__overflow_allowed to pg
-- requires: campsite_type
begin;
alter table camper.campsite_type
add column overflow_allowed boolean not null default false
;
commit;