camper/deploy/campsite__info.sql

12 lines
204 B
PL/PgSQL

-- Deploy camper:campsite__info to pg
-- requires: campsite
begin;
alter table camper.campsite
add column info1 xml not null default ''::xml
, add column info2 xml not null default ''::xml
;
commit;