n8n/docs/generated/postgres-schema/public.workflow_publication_trigger_status.md
mfsiega c761c4da9b
feat(core): Add trigger reconciliation to recover missed activations (no-changelog) (#33577)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Danny Martini <danny@n8n.io>
2026-07-14 14:40:33 +00:00

4.0 KiB

public.workflow_publication_trigger_status

Columns

Name Type Default Nullable Children Parents Comment
createdAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
errorMessage text true
nodeId varchar(36) false
status varchar(20) false
triggerKind varchar(20) false Where the trigger lives once activated: in-memory (registered on the owning instance) vs persisted (webhook row in webhook_entity)
updatedAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
versionId varchar(36) false public.workflow_history References workflow_history.versionId: the published version these statuses were recorded for
workflowId varchar(36) false public.workflow_entity

Constraints

Name Type Definition
CHK_workflow_publication_trigger_status_status CHECK CHECK (((status)::text = ANY ((ARRAY['activated'::character varying, 'failed'::character varying])::text[])))
CHK_workflow_publication_trigger_status_triggerKind CHECK CHECK ((("triggerKind")::text = ANY ((ARRAY['in-memory'::character varying, 'persisted'::character varying])::text[])))
FK_b7b496d8d1a21158c65f475cd88 FOREIGN KEY FOREIGN KEY ("workflowId") REFERENCES workflow_entity(id) ON DELETE CASCADE
FK_ef1994db9d0ac1b6a5c89b5f729 FOREIGN KEY FOREIGN KEY ("versionId") REFERENCES workflow_history("versionId") ON DELETE CASCADE
PK_14aa18b83513fb92d7523909e02 PRIMARY KEY PRIMARY KEY ("workflowId", "nodeId")
workflow_publication_trigger_status_createdAt_not_null n NOT NULL "createdAt"
workflow_publication_trigger_status_nodeId_not_null n NOT NULL "nodeId"
workflow_publication_trigger_status_status_not_null n NOT NULL status
workflow_publication_trigger_status_triggerKind_not_null n NOT NULL "triggerKind"
workflow_publication_trigger_status_updatedAt_not_null n NOT NULL "updatedAt"
workflow_publication_trigger_status_versionId_not_null n NOT NULL "versionId"
workflow_publication_trigger_status_workflowId_not_null n NOT NULL "workflowId"

Indexes

Name Definition
PK_14aa18b83513fb92d7523909e02 CREATE UNIQUE INDEX "PK_14aa18b83513fb92d7523909e02" ON public.workflow_publication_trigger_status USING btree ("workflowId", "nodeId")

Relations

erDiagram

"public.workflow_publication_trigger_status" }o--|| "public.workflow_history" : "FOREIGN KEY (#quot;versionId#quot;) REFERENCES workflow_history(#quot;versionId#quot;) ON DELETE CASCADE"
"public.workflow_publication_trigger_status" }o--|| "public.workflow_entity" : "FOREIGN KEY (#quot;workflowId#quot;) REFERENCES workflow_entity(id) ON DELETE CASCADE"

"public.workflow_publication_trigger_status" {
  timestamp_3__with_time_zone createdAt
  text errorMessage
  varchar_36_ nodeId
  varchar_20_ status
  varchar_20_ triggerKind
  timestamp_3__with_time_zone updatedAt
  varchar_36_ versionId FK
  varchar_36_ workflowId FK
}
"public.workflow_history" {
  varchar_255_ authors
  boolean autosaved
  json connections
  timestamp_3__with_time_zone createdAt
  text description
  varchar_128_ name
  json nodeGroups
  json nodes
  timestamp_3__with_time_zone updatedAt
  varchar_36_ versionId
  varchar_36_ workflowId FK
}
"public.workflow_entity" {
  boolean active
  varchar_36_ activeVersionId FK
  json connections
  timestamp_3__with_time_zone createdAt
  text description
  varchar_36_ id
  boolean isArchived
  json meta
  varchar_128_ name
  json nodeGroups
  json nodes
  varchar_36_ parentFolderId FK
  json pinData
  json settings
  varchar sourceWorkflowId
  json staticData
  integer triggerCount
  timestamp_3__with_time_zone updatedAt
  integer versionCounter
  character_36_ versionId
}

Generated by tbls