Delete the table schema in the database.
adrop_table(
connection: psycopg.AsyncConnection,
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.AsyncConnection | Async database connection. |
table_name* | str | The name of the table to create. |