File size: 307 Bytes
a6bf405
 
 
 
 
 
 
1
2
3
4
5
6
7
8
-- Reset the public schema (destructive)
-- WARNING: this removes all tables, sequences and data in the public schema.

DROP SCHEMA public CASCADE;
CREATE SCHEMA public;
-- grant to the generic PUBLIC role; specific grants to service accounts are handled by the script
GRANT ALL ON SCHEMA public TO public;