10 lines
145 B
MySQL
10 lines
145 B
MySQL
|
-- Revert camper:company__tourist_tax_max_days from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.company
|
||
|
drop column if exists tourist_tax_max_days
|
||
|
;
|
||
|
|
||
|
commit;
|