Add SQL script for dropping all tables

This commit is contained in:
Kai S. K. Engelbart 2020-06-09 17:06:18 +02:00
parent c40aab9ecb
commit 5ea896d52b
1 changed files with 4 additions and 0 deletions

4
drop_all_tables.sql Normal file
View File

@ -0,0 +1,4 @@
DROP SCHEMA public CASCADE;
CREATE SCHEMA public;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO public;