15 lines
273 B
MySQL
15 lines
273 B
MySQL
|
-- Deploy camper:company__tourist_tax_max_days to pg
|
||
|
-- requires: company
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.company
|
||
|
add column tourist_tax_max_days camper.positive_integer not null default 7
|
||
|
;
|
||
|
|
||
|
alter table camper.company
|
||
|
alter column tourist_tax_max_days drop default
|
||
|
;
|
||
|
|
||
|
commit;
|