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
@@ -46,6 +46,7 @@ import m40 from "./scriptsSqlite/1.18.4";
import m41 from "./scriptsSqlite/1.19.0";
import m42 from "./scriptsSqlite/1.19.1";
import m43 from "./scriptsSqlite/1.20.0";
import m44 from "./scriptsSqlite/1.21.0";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -89,7 +90,8 @@ const migrations = [
{ version: "1.18.4", run: m40 },
{ version: "1.19.0", run: m41 },
{ version: "1.19.1", run: m42 },
{ version: "1.20.0", run: m43 }
{ version: "1.20.0", run: m43 },
{ version: "1.21.0", run: m44 }
// Add new migrations here as they are created
] as const;