Query
CREATE TABLE "execution_data" (
"executionId" int PRIMARY KEY NOT NULL,
"workflowData" text NOT NULL,
"data" text NOT NULL,
FOREIGN KEY("executionId") REFERENCES "execution_entity" ("id") ON DELETE CASCADE
)
CREATE TABLE "execution_data" (
"executionId" int PRIMARY KEY NOT NULL,
"workflowData" text NOT NULL,
"data" text NOT NULL,
FOREIGN KEY("executionId") REFERENCES "execution_entity" ("id") ON DELETE CASCADE
)