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