10 lines
127 B
MySQL
10 lines
127 B
MySQL
|
-- Revert camper:company__tourist_tax from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table camper.company
|
||
|
drop column if exists tourist_tax
|
||
|
;
|
||
|
|
||
|
commit;
|