mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-27 19:15:01 +02:00
1.5 KiB
1.5 KiB
webhook_entity
Description
Table Definition
CREATE TABLE "webhook_entity" ("workflowId" varchar(36) NOT NULL, "webhookPath" varchar NOT NULL, "method" varchar NOT NULL, "node" varchar NOT NULL, "webhookId" varchar, "pathLength" integer, PRIMARY KEY ("webhookPath", "method"))
Columns
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|---|---|---|---|---|---|
| method | varchar | false | ||||
| node | varchar | false | ||||
| pathLength | INTEGER | true | ||||
| webhookId | varchar | true | ||||
| webhookPath | varchar | false | ||||
| workflowId | varchar(36) | false |
Constraints
| Name | Type | Definition |
|---|---|---|
| method | PRIMARY KEY | PRIMARY KEY (method) |
| sqlite_autoindex_webhook_entity_1 | PRIMARY KEY | PRIMARY KEY (webhookPath, method) |
| webhookPath | PRIMARY KEY | PRIMARY KEY (webhookPath) |
Indexes
| Name | Definition |
|---|---|
| idx_webhook_entity_webhook_path_method | CREATE INDEX "idx_webhook_entity_webhook_path_method" ON "webhook_entity" ("webhookId","method","pathLength") |
| sqlite_autoindex_webhook_entity_1 | PRIMARY KEY (webhookPath, method) |
Relations
erDiagram
"webhook_entity" {
varchar method PK
varchar node
INTEGER pathLength
varchar webhookId
varchar webhookPath PK
varchar_36_ workflowId
}
Generated by tbls