14 lines
318 B
MySQL
14 lines
318 B
MySQL
|
-- Revert camper:schema_public from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
revoke usage on schema public from admin;
|
||
|
revoke usage on schema public from employee;
|
||
|
revoke usage on schema public from guest;
|
||
|
revoke usage on schema public from authenticator;
|
||
|
|
||
|
grant usage on schema public to public;
|
||
|
grant create on schema public to public;
|
||
|
|
||
|
commit;
|