n8n/docs/generated/sqlite-schema/execution_annotations.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

82 lines
2.6 KiB
Markdown

# execution_annotations
## Description
<details>
<summary><strong>Table Definition</strong></summary>
```sql
CREATE TABLE "execution_annotations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "executionId" integer NOT NULL, "vote" varchar(6), "note" text, "createdAt" datetime(3) NOT NULL DEFAULT (STRFTIME('%Y-%m-%d %H:%M:%f', 'NOW')), "updatedAt" datetime(3) NOT NULL DEFAULT (STRFTIME('%Y-%m-%d %H:%M:%f', 'NOW')), CONSTRAINT "FK_97f863fa83c4786f19565084960" FOREIGN KEY ("executionId") REFERENCES "execution_entity" ("id") ON DELETE CASCADE)
```
</details>
## Columns
| Name | Type | Default | Nullable | Children | Parents | Comment |
| ---- | ---- | ------- | -------- | -------- | ------- | ------- |
| id | INTEGER | | false | [execution_annotation_tags](execution_annotation_tags.md) | | |
| executionId | INTEGER | | false | | [execution_entity](execution_entity.md) | |
| vote | varchar(6) | | true | | | |
| note | TEXT | | true | | | |
| createdAt | datetime(3) | STRFTIME('%Y-%m-%d %H:%M:%f', 'NOW') | false | | | |
| updatedAt | datetime(3) | STRFTIME('%Y-%m-%d %H:%M:%f', 'NOW') | false | | | |
## Constraints
| Name | Type | Definition |
| ---- | ---- | ---------- |
| id | PRIMARY KEY | PRIMARY KEY (id) |
| - (Foreign key ID: 0) | FOREIGN KEY | FOREIGN KEY (executionId) REFERENCES execution_entity (id) ON UPDATE NO ACTION ON DELETE CASCADE MATCH NONE |
## Indexes
| Name | Definition |
| ---- | ---------- |
| IDX_97f863fa83c4786f1956508496 | CREATE UNIQUE INDEX "IDX_97f863fa83c4786f1956508496" ON "execution_annotations" ("executionId") |
## Relations
```mermaid
erDiagram
"execution_annotation_tags" |o--|| "execution_annotations" : "FOREIGN KEY (annotationId) REFERENCES execution_annotations (id) ON UPDATE NO ACTION ON DELETE CASCADE MATCH NONE"
"execution_annotations" }o--|| "execution_entity" : "FOREIGN KEY (executionId) REFERENCES execution_entity (id) ON UPDATE NO ACTION ON DELETE CASCADE MATCH NONE"
"execution_annotations" {
INTEGER id
INTEGER executionId FK
varchar_6_ vote
TEXT note
datetime_3_ createdAt
datetime_3_ updatedAt
}
"execution_annotation_tags" {
INTEGER annotationId PK
varchar_24_ tagId PK
}
"execution_entity" {
INTEGER id
varchar_36_ workflowId FK
boolean finished
varchar mode
varchar retryOf
varchar retrySuccessId
datetime startedAt
datetime stoppedAt
datetime waitTill
varchar status
datetime_3_ deletedAt
datetime_3_ createdAt
varchar_2_ storedAt
TEXT tracingContext
varchar_255_ deduplicationKey
BIGINT jsonSizeBytes
VARCHAR_36_ workflowVersionId
}
```
---
> Generated by [tbls](https://github.com/k1LoW/tbls)