mirror of
https://github.com/n8n-io/n8n.git
synced 2026-08-29 01:39:24 +08:00
1.8 KiB
1.8 KiB
public.execution_data
Columns
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|---|---|---|---|---|---|
| executionId | integer | false | public.execution_entity | |||
| workflowData | json | false | ||||
| data | text | false | ||||
| workflowVersionId | varchar(36) | true |
Constraints
| Name | Type | Definition |
|---|---|---|
| execution_data_data_not_null | n | NOT NULL data |
| execution_data_executionId_not_null | n | NOT NULL "executionId" |
| execution_data_workflowData_not_null | n | NOT NULL "workflowData" |
| execution_data_fk | FOREIGN KEY | FOREIGN KEY ("executionId") REFERENCES execution_entity(id) ON DELETE CASCADE |
| execution_data_pkey | PRIMARY KEY | PRIMARY KEY ("executionId") |
Indexes
| Name | Definition |
|---|---|
| execution_data_pkey | CREATE UNIQUE INDEX execution_data_pkey ON public.execution_data USING btree ("executionId") |
Relations
erDiagram
"public.execution_data" |o--|| "public.execution_entity" : "FOREIGN KEY (#quot;executionId#quot;) REFERENCES execution_entity(id) ON DELETE CASCADE"
"public.execution_data" {
integer executionId FK
json workflowData
text data
varchar_36_ workflowVersionId
}
"public.execution_entity" {
integer id
boolean finished
varchar mode
varchar retryOf
varchar retrySuccessId
timestamp_3__with_time_zone startedAt
timestamp_3__with_time_zone stoppedAt
timestamp_3__with_time_zone waitTill
varchar status
varchar_36_ workflowId FK
timestamp_3__with_time_zone deletedAt
timestamp_3__with_time_zone createdAt
varchar_2_ storedAt
json tracingContext
varchar_255_ deduplicationKey
}
Generated by tbls