camper/revert/schema_public.sql

14 lines
318 B
MySQL
Raw Normal View History

-- 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;