Query
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
)