drop_table
Remove a database table using DBeaver connections with built-in safety confirmation to prevent accidental data loss.
Instructions
Remove a table from the database with safety confirmation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | Yes | Safety confirmation flag (must be true) | |
connectionId | Yes | The ID or name of the DBeaver connection | |
tableName | Yes | Name of the table to drop |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"description": "Safety confirmation flag (must be true)",
"type": "boolean"
},
"connectionId": {
"description": "The ID or name of the DBeaver connection",
"type": "string"
},
"tableName": {
"description": "Name of the table to drop",
"type": "string"
}
},
"required": [
"connectionId",
"tableName",
"confirm"
],
"type": "object"
}