Created
December 7, 2017 23:10
-
-
Save DevanR/c5c319039b7781c623258e156b3dfc22 to your computer and use it in GitHub Desktop.
Drop all Postgres tables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP SCHEMA public CASCADE; | |
CREATE SCHEMA public; | |
GRANT ALL ON SCHEMA public TO postgres; | |
GRANT ALL ON SCHEMA public TO public; | |
COMMENT ON SCHEMA public IS 'standard public schema'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment