camper/deploy/company__tourist_tax.sql

15 lines
232 B
MySQL
Raw Permalink Normal View History

-- Deploy camper:company__tourist_tax to pg
-- requires: company
begin;
alter table camper.company
add column tourist_tax integer not null default 60;
;
alter table camper.company
alter column tourist_tax drop default
;
commit;