Created
May 15, 2018 04:26
-
-
Save meorajrul/7005bac80d8d2624ad3d91d0af4df7a2 to your computer and use it in GitHub Desktop.
postgres drop all table and schema
This file contains hidden or 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
DO $$ DECLARE | |
tabname RECORD; | |
BEGIN | |
FOR tabname IN (SELECT tablename | |
FROM pg_tables | |
WHERE schemaname = current_schema()) | |
LOOP | |
EXECUTE 'DROP TABLE IF EXISTS ' || quote_ident(tabname.tablename) || ' CASCADE'; | |
END LOOP; | |
END $$; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment