Skip to content

Commit 84f5563

Browse files
committed
Fix the migrations
1 parent 32817f9 commit 84f5563

File tree

2 files changed

+7
-14
lines changed
  • internal-packages/database/prisma/migrations

2 files changed

+7
-14
lines changed
Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
-- DropIndex
2-
DROP INDEX "SecretStore_key_idx";
3-
41
-- AlterTable
5-
ALTER TABLE "TaskRun" ADD COLUMN "queueTimestamp" TIMESTAMP(3);
6-
7-
-- CreateIndex
8-
CREATE INDEX "SecretStore_key_idx" ON "SecretStore"("key" text_pattern_ops);
2+
ALTER TABLE
3+
"TaskRun"
4+
ADD
5+
COLUMN "queueTimestamp" TIMESTAMP(3);
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
-- AlterEnum
2-
ALTER TYPE "BatchTaskRunStatus" ADD VALUE 'ABORTED';
3-
4-
-- DropIndex
5-
DROP INDEX "SecretStore_key_idx";
6-
7-
-- CreateIndex
8-
CREATE INDEX "SecretStore_key_idx" ON "SecretStore"("key" text_pattern_ops);
2+
ALTER TYPE "BatchTaskRunStatus"
3+
ADD
4+
VALUE 'ABORTED';

0 commit comments

Comments
 (0)