9 lines
147 B
MySQL
9 lines
147 B
MySQL
|
-- Revert numerus:contact from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
drop policy if exists company_policy on numerus.contact;
|
||
|
drop table if exists numerus.contact;
|
||
|
|
||
|
commit;
|