you can cascade the circuit and then drop db:
drop schema myschema CASCADE; drop database mydb;
if you do not have rights to do so, you will have to abandon table after table.
EDIT: if you can only drop tables, this will give you SQL queries to run:
select 'drop table '||schemaname||'.'||tablename||' CASCADE;' from pg_tables where schemaname = 'myschema' order by schemaname, tablename;
source share