From c31fd9ed7990cffe966d0283e30001f6b9b0ab46 Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 21 Aug 2025 17:52:55 +0800 Subject: [PATCH] fix do migration --- infra/app.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infra/app.ts b/infra/app.ts index 190ddbcf..008c1245 100644 --- a/infra/app.ts +++ b/infra/app.ts @@ -25,9 +25,9 @@ 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", - newSqliteClasses: ["SyncServer"], + oldTag: $app.stage === "production" ? "" : "v1", + newTag: $app.stage === "production" ? "" : "v1", + //newSqliteClasses: ["SyncServer"], } }, },