Skip to content

Instantly share code, notes, and snippets.

@kagundajm
Last active October 3, 2022 15:34
Show Gist options
  • Save kagundajm/ea1d07bac1db6ce780fabb61116b666b to your computer and use it in GitHub Desktop.
Save kagundajm/ea1d07bac1db6ce780fabb61116b666b to your computer and use it in GitHub Desktop.
DO $$
DECLARE
r RECORD;
BEGIN
FOR r IN
(
SELECT table_name
FROM information_schema.tables
WHERE table_schema=current_schema()
)
LOOP
EXECUTE 'DROP TABLE IF EXISTS ' || quote_ident(r.table_name) || ' CASCADE';
END LOOP;
END $$ ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment