camper/deploy/campsite_type_i18n__check_i...

17 lines
357 B
PL/PgSQL

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