camper/deploy/campsite_type__check_in_out...

12 lines
226 B
PL/PgSQL

-- Deploy camper:campsite_type__check_in_out to pg
-- requires: campsite_type
begin;
alter table camper.campsite_type
add column check_in text not null default ''
, add column check_out text not null default ''
;
commit;