n8n/docs/generated/postgres-schema/public.test_case_execution.md
Mike Repeć 612cb772c2
feat(core): Add sizeBytes and workflowVersionId to executions (no-changelog) (#32067)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
2026-06-12 09:44:19 +00:00

3.7 KiB

public.test_case_execution

Columns

Name Type Default Nullable Children Parents Comment
id varchar(36) false
testRunId varchar(36) false public.test_run
executionId integer true public.execution_entity
status varchar false
runAt timestamp(3) with time zone true
completedAt timestamp(3) with time zone true
errorCode varchar true
errorDetails json true
metrics json true
createdAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
updatedAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
inputs json true
outputs json true
runIndex integer true

Constraints

Name Type Definition
test_case_execution_createdAt_not_null n NOT NULL "createdAt"
test_case_execution_id_not_null n NOT NULL id
test_case_execution_status_not_null n NOT NULL status
test_case_execution_testRunId_not_null n NOT NULL "testRunId"
test_case_execution_updatedAt_not_null n NOT NULL "updatedAt"
FK_e48965fac35d0f5b9e7f51d8c44 FOREIGN KEY FOREIGN KEY ("executionId") REFERENCES execution_entity(id) ON DELETE SET NULL
FK_8e4b4774db42f1e6dda3452b2af FOREIGN KEY FOREIGN KEY ("testRunId") REFERENCES test_run(id) ON DELETE CASCADE
PK_90c121f77a78a6580e94b794bce PRIMARY KEY PRIMARY KEY (id)

Indexes

Name Definition
PK_90c121f77a78a6580e94b794bce CREATE UNIQUE INDEX "PK_90c121f77a78a6580e94b794bce" ON public.test_case_execution USING btree (id)
IDX_8e4b4774db42f1e6dda3452b2a CREATE INDEX "IDX_8e4b4774db42f1e6dda3452b2a" ON public.test_case_execution USING btree ("testRunId")

Relations

erDiagram

"public.test_case_execution" }o--|| "public.test_run" : "FOREIGN KEY (#quot;testRunId#quot;) REFERENCES test_run(id) ON DELETE CASCADE"
"public.test_case_execution" }o--o| "public.execution_entity" : "FOREIGN KEY (#quot;executionId#quot;) REFERENCES execution_entity(id) ON DELETE SET NULL"

"public.test_case_execution" {
  varchar_36_ id
  varchar_36_ testRunId FK
  integer executionId FK
  varchar status
  timestamp_3__with_time_zone runAt
  timestamp_3__with_time_zone completedAt
  varchar errorCode
  json errorDetails
  json metrics
  timestamp_3__with_time_zone createdAt
  timestamp_3__with_time_zone updatedAt
  json inputs
  json outputs
  integer runIndex
}
"public.test_run" {
  varchar_36_ id
  varchar_36_ workflowId FK
  varchar status
  varchar errorCode
  json errorDetails
  timestamp_3__with_time_zone runAt
  timestamp_3__with_time_zone completedAt
  json metrics
  timestamp_3__with_time_zone createdAt
  timestamp_3__with_time_zone updatedAt
  varchar_255_ runningInstanceId
  boolean cancelRequested
  varchar_36_ workflowVersionId
  varchar_36_ evaluationConfigId FK
  jsonb evaluationConfigSnapshot
  varchar_36_ collectionId FK
}
"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
  bigint jsonSizeBytes
  varchar_36_ workflowVersionId
}

Generated by tbls