create_table
Execute CREATE TABLE statements to add new database tables using existing DBeaver connections, enabling structured data storage without additional configuration.
Instructions
Create new tables in the database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connectionId | Yes | The ID or name of the DBeaver connection | |
| query | Yes | CREATE TABLE statement |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "The ID or name of the DBeaver connection",
"type": "string"
},
"query": {
"description": "CREATE TABLE statement",
"type": "string"
}
},
"required": [
"connectionId",
"query"
],
"type": "object"
}