add 1.21 migrations

This commit is contained in:
miloschwartz
2026-07-17 15:58:13 -04:00
parent 02d2e09709
commit eb3a3eac98
5 changed files with 110 additions and 3 deletions
+3 -1
View File
@@ -27,6 +27,7 @@ import m18 from "./scriptsPg/1.18.3";
import m19 from "./scriptsPg/1.18.4";
import m20 from "./scriptsPg/1.19.0";
import m21 from "./scriptsPg/1.20.0";
import m22 from "./scriptsPg/1.21.0";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -53,7 +54,8 @@ const migrations = [
{ version: "1.18.3", run: m18 },
{ version: "1.18.4", run: m19 },
{ version: "1.19.0", run: m20 },
{ version: "1.20.0", run: m21 }
{ version: "1.20.0", run: m21 },
{ version: "1.21.0", run: m22 }
// Add new migrations here as they are created
] as {
version: string;