From 04dcd871703b1071c42ccdec23c2b5a3554e8b05 Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 21 Aug 2025 18:02:32 +0800 Subject: [PATCH] fix do migration --- infra/app.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/app.ts b/infra/app.ts index 008c1245..e1e7b26c 100644 --- a/infra/app.ts +++ b/infra/app.ts @@ -25,8 +25,8 @@ export const api = new sst.cloudflare.Worker("Api", { ]) args.migrations = { // Note: when releasing the next tag, make sure all stages use tag v2 - oldTag: $app.stage === "production" ? "" : "v1", - newTag: $app.stage === "production" ? "" : "v1", + oldTag: $app.stage === "production" || $app.stage === "thdxr" ? "" : "v1", + newTag: $app.stage === "production" || $app.stage === "thdxr" ? "" : "v1", //newSqliteClasses: ["SyncServer"], } },