alter_table
Modify database table schemas by executing ALTER TABLE statements to add columns, rename tables, or change structure through DBeaver connections.
Instructions
Modify existing table schema (add columns, rename tables, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | The ID or name of the DBeaver connection | |
query | Yes | ALTER TABLE statement |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "The ID or name of the DBeaver connection",
"type": "string"
},
"query": {
"description": "ALTER TABLE statement",
"type": "string"
}
},
"required": [
"connectionId",
"query"
],
"type": "object"
}