drop_table
Permanently remove a table from the SQLite database to free up space or discard outdated data. Irreversible: all table contents are lost.
Instructions
Permanently deletes (drops) a table from the SQLite database.
Use this to free up space or remove tables that are no longer needed. This action is irreversible — all data in the table will be lost.
Args: table_name_input: Object containing the table_name to drop.
Returns: Dict[str, Any]: A dictionary indicating success or an error message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | Name of the SQL table. |