Add missing primary key to "WorkflowTriggerCronRef" (#3086)

* add constraint and migration

* comment
This commit is contained in:
Mohammed Nafees
2026-02-23 21:05:28 +01:00
committed by GitHub
parent 44069cef89
commit 9a063f198d
2 changed files with 16 additions and 1 deletions
+2 -1
View File
@@ -1018,7 +1018,8 @@ CREATE TABLE "WorkflowTriggerCronRef" (
"name" TEXT,
"id" UUID NOT NULL,
"method" "WorkflowTriggerCronRefMethods" NOT NULL DEFAULT 'DEFAULT',
"priority" INTEGER NOT NULL DEFAULT 1
"priority" INTEGER NOT NULL DEFAULT 1,
CONSTRAINT "WorkflowTriggerCronRef_pkey" PRIMARY KEY ("id")
);
-- CreateTable