13 lines
301 B
MySQL
13 lines
301 B
MySQL
|
-- Revert numerus:schema_public from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter default privileges grant execute on functions to public;
|
||
|
|
||
|
revoke usage on schema public from authenticator;
|
||
|
revoke usage on schema public from admin;
|
||
|
revoke usage on schema public from invoicer;
|
||
|
revoke usage on schema public from guest;
|
||
|
|
||
|
commit;
|