-- 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;