camper/deploy/company__tourist_tax.sql
jordi fita mas 79df1736f2 Add tourist tax to company
Not used anywhere yet, but i will need it when computing the booking’s
total.
2024-01-14 02:09:17 +01:00

15 lines
232 B
PL/PgSQL

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