mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-04-30 14:39:56 -05:00
Add missing primary key to "WorkflowTriggerCronRef" (#3086)
* add constraint and migration * comment
This commit is contained in:
+2
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user