You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- A unique constraint covering the columns `[taskRunId,waitpointId,batchIndex]` on the table `TaskRunWaitpoint` will be added. If there are existing duplicate values, this will fail.
-- CreateIndex (multiple can have null batchIndex, so we need the other one below)
11
+
CREATEUNIQUE INDEX "TaskRunWaitpoint_taskRunId_waitpointId_batchIndex_key" ON"TaskRunWaitpoint" ("taskRunId", "waitpointId", "batchIndex");
12
+
13
+
-- CreateIndex (where batchIndex is null)
14
+
CREATEUNIQUE INDEX "TaskRunWaitpoint_taskRunId_waitpointId_batchIndex_null_key" ON"TaskRunWaitpoint"("taskRunId", "waitpointId") WHERE"batchIndex" IS NULL;
0 commit comments