n8n/docs/generated/postgres-schema/public.workflow_history.md

4.0 KiB

public.workflow_history

Columns

Name Type Default Nullable Children Parents Comment
versionId varchar(36) false public.workflow_entity public.workflow_publish_history public.workflow_published_version
workflowId varchar(36) false public.workflow_entity
authors varchar(255) false
createdAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
updatedAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
nodes json false
connections json false
name varchar(128) true
autosaved boolean false false
description text true
nodeGroups json '[]'::json false

Constraints

Name Type Definition
workflow_history_authors_not_null n NOT NULL authors
workflow_history_autosaved_not_null n NOT NULL autosaved
workflow_history_connections_not_null n NOT NULL connections
workflow_history_createdAt_not_null n NOT NULL "createdAt"
workflow_history_nodeGroups_not_null n NOT NULL "nodeGroups"
workflow_history_nodes_not_null n NOT NULL nodes
workflow_history_updatedAt_not_null n NOT NULL "updatedAt"
workflow_history_versionId_not_null n NOT NULL "versionId"
workflow_history_workflowId_not_null n NOT NULL "workflowId"
FK_1e31657f5fe46816c34be7c1b4b FOREIGN KEY FOREIGN KEY ("workflowId") REFERENCES workflow_entity(id) ON DELETE CASCADE
PK_b6572dd6173e4cd06fe79937b58 PRIMARY KEY PRIMARY KEY ("versionId")

Indexes

Name Definition
PK_b6572dd6173e4cd06fe79937b58 CREATE UNIQUE INDEX "PK_b6572dd6173e4cd06fe79937b58" ON public.workflow_history USING btree ("versionId")
IDX_1e31657f5fe46816c34be7c1b4 CREATE INDEX "IDX_1e31657f5fe46816c34be7c1b4" ON public.workflow_history USING btree ("workflowId")

Relations

erDiagram

"public.workflow_entity" }o--o| "public.workflow_history" : "FOREIGN KEY (#quot;activeVersionId#quot;) REFERENCES workflow_history(#quot;versionId#quot;) ON DELETE RESTRICT"
"public.workflow_publish_history" }o--o| "public.workflow_history" : "FOREIGN KEY (#quot;versionId#quot;) REFERENCES workflow_history(#quot;versionId#quot;) ON DELETE SET NULL"
"public.workflow_published_version" }o--|| "public.workflow_history" : "FOREIGN KEY (#quot;publishedVersionId#quot;) REFERENCES workflow_history(#quot;versionId#quot;) ON DELETE RESTRICT"
"public.workflow_history" }o--|| "public.workflow_entity" : "FOREIGN KEY (#quot;workflowId#quot;) REFERENCES workflow_entity(id) ON DELETE CASCADE"

"public.workflow_history" {
  varchar_36_ versionId
  varchar_36_ workflowId FK
  varchar_255_ authors
  timestamp_3__with_time_zone createdAt
  timestamp_3__with_time_zone updatedAt
  json nodes
  json connections
  varchar_128_ name
  boolean autosaved
  text description
  json nodeGroups
}
"public.workflow_entity" {
  varchar_128_ name
  boolean active
  json nodes
  json connections
  timestamp_3__with_time_zone createdAt
  timestamp_3__with_time_zone updatedAt
  json settings
  json staticData
  json pinData
  character_36_ versionId
  integer triggerCount
  varchar_36_ id
  json meta
  varchar_36_ parentFolderId FK
  boolean isArchived
  integer versionCounter
  text description
  varchar_36_ activeVersionId FK
  json nodeGroups
  varchar sourceWorkflowId
}
"public.workflow_publish_history" {
  integer id
  varchar_36_ workflowId FK
  varchar_36_ versionId FK
  varchar_36_ event
  uuid userId FK
  timestamp_3__with_time_zone createdAt
}
"public.workflow_published_version" {
  varchar_36_ workflowId FK
  varchar_36_ publishedVersionId FK
  timestamp_3__with_time_zone createdAt
  timestamp_3__with_time_zone updatedAt
}

Generated by tbls