n8n/docs/generated/sqlite-schema/webhook_entity.md

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