# public.test_case_execution ## Columns | Name | Type | Default | Nullable | Children | Parents | Comment | | ---- | ---- | ------- | -------- | -------- | ------- | ------- | | completedAt | timestamp(3) with time zone | | true | | | | | createdAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | | | errorCode | varchar | | true | | | | | errorDetails | json | | true | | | | | executionId | integer | | true | | [public.execution_entity](public.execution_entity.md) | | | id | varchar(36) | | false | | | | | inputs | json | | true | | | | | metrics | json | | true | | | | | outputs | json | | true | | | | | runAt | timestamp(3) with time zone | | true | | | | | runIndex | integer | | true | | | | | status | varchar | | false | | | | | testRunId | varchar(36) | | false | | [public.test_run](public.test_run.md) | | | updatedAt | timestamp(3) with time zone | CURRENT_TIMESTAMP(3) | false | | | | ## Constraints | Name | Type | Definition | | ---- | ---- | ---------- | | FK_8e4b4774db42f1e6dda3452b2af | FOREIGN KEY | FOREIGN KEY ("testRunId") REFERENCES test_run(id) ON DELETE CASCADE | | FK_e48965fac35d0f5b9e7f51d8c44 | FOREIGN KEY | FOREIGN KEY ("executionId") REFERENCES execution_entity(id) ON DELETE SET NULL | | PK_90c121f77a78a6580e94b794bce | PRIMARY KEY | PRIMARY KEY (id) | | 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" | ## Indexes | Name | Definition | | ---- | ---------- | | IDX_8e4b4774db42f1e6dda3452b2a | CREATE INDEX "IDX_8e4b4774db42f1e6dda3452b2a" ON public.test_case_execution USING btree ("testRunId") | | PK_90c121f77a78a6580e94b794bce | CREATE UNIQUE INDEX "PK_90c121f77a78a6580e94b794bce" ON public.test_case_execution USING btree (id) | ## Relations ```mermaid erDiagram "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" }o--|| "public.test_run" : "FOREIGN KEY (#quot;testRunId#quot;) REFERENCES test_run(id) ON DELETE CASCADE" "public.test_case_execution" { timestamp_3__with_time_zone completedAt timestamp_3__with_time_zone createdAt varchar errorCode json errorDetails integer executionId FK varchar_36_ id json inputs json metrics json outputs timestamp_3__with_time_zone runAt integer runIndex varchar status varchar_36_ testRunId FK timestamp_3__with_time_zone updatedAt } "public.execution_entity" { bigint binaryDataSizeBytes timestamp_3__with_time_zone createdAt varchar_255_ deduplicationKey timestamp_3__with_time_zone deletedAt boolean finished integer id bigint jsonSizeBytes varchar mode varchar retryOf varchar retrySuccessId timestamp_3__with_time_zone startedAt varchar status timestamp_3__with_time_zone stoppedAt varchar_2_ storedAt json tracingContext boolean usedPrivateCredentials timestamp_3__with_time_zone waitTill varchar_36_ workflowId FK varchar_36_ workflowVersionId } "public.test_run" { boolean cancelRequested varchar_36_ collectionId FK timestamp_3__with_time_zone completedAt timestamp_3__with_time_zone createdAt varchar errorCode json errorDetails varchar_36_ evaluationConfigId FK jsonb evaluationConfigSnapshot varchar_36_ id json metrics timestamp_3__with_time_zone runAt varchar_255_ runningInstanceId varchar status timestamp_3__with_time_zone updatedAt varchar_36_ workflowId FK varchar_36_ workflowVersionId } ``` --- > Generated by [tbls](https://github.com/k1LoW/tbls)