mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-27 19:15:01 +02:00
59 lines
1.5 KiB
Markdown
59 lines
1.5 KiB
Markdown
# webhook_entity
|
|
|
|
## Description
|
|
|
|
<details>
|
|
<summary><strong>Table Definition</strong></summary>
|
|
|
|
```sql
|
|
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"))
|
|
```
|
|
|
|
</details>
|
|
|
|
## 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
|
|
|
|
```mermaid
|
|
erDiagram
|
|
|
|
|
|
"webhook_entity" {
|
|
varchar method PK
|
|
varchar node
|
|
INTEGER pathLength
|
|
varchar webhookId
|
|
varchar webhookPath PK
|
|
varchar_36_ workflowId
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
> Generated by [tbls](https://github.com/k1LoW/tbls)
|