9 lines
132 B
MySQL
9 lines
132 B
MySQL
|
-- Revert camper:tax from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
drop policy if exists company_policy on camper.tax;
|
||
|
drop table if exists camper.tax;
|
||
|
|
||
|
commit;
|