Query
CREATE TABLE "execution_annotation_tags" (
"annotationId" integer NOT NULL,
"tagId" varchar(24) NOT NULL,
CONSTRAINT "FK_c1519757391996eb06064f0e7c8" FOREIGN KEY ("annotationId") REFERENCES "execution_annotations" ("id") ON DELETE CASCADE,
CONSTRAINT "FK_a3697779b366e131b2bbdae2976" FOREIGN KEY ("tagId") REFERENCES "annotation_tag_entity" ("id") ON DELETE CASCADE,
PRIMARY KEY ("annotationId", "tagId")
)