Skip to content

Instantly share code, notes, and snippets.

@Sillson
Created April 7, 2017 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sillson/0294031c2231c72bbc8e7d046e038ccf to your computer and use it in GitHub Desktop.
Save Sillson/0294031c2231c72bbc8e7d046e038ccf to your computer and use it in GitHub Desktop.
Drop foreign schema tables
do
$$
declare
l_rec record;
begin
for l_rec in (select foreign_table_schema, foreign_table_name
from information_schema.foreign_tables) loop
execute format('drop foreign table %I.%I cascade', l_rec.foreign_table_schema, l_rec.foreign_table_name);
end loop;
end;
$$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment