Drop table if it exists in PostgreSQL

DROP TABLE IF EXISTS table_name

Multiple table names can be specified.

Cascade drop dependent objects

DROP TABLE IF EXISTS table_name CASCADE