Delete the table schema in the database.
drop_table(
connection: psycopg.Connection,
table_name: str,
) -> NoneWARNING:
This will delete the given table from the database including all the database in the table and the schema of the table.
| Name | Type | Description |
|---|---|---|
connection* | psycopg.Connection | The database connection. |
table_name* | str | The name of the table to create. |