bump version and add 1.23 migrations

This commit is contained in:
miloschwartz
2026-09-14 17:18:31 -04:00
parent d23028d38e
commit 8f1344a665
5 changed files with 78 additions and 3 deletions
+3 -1
View File
@@ -29,6 +29,7 @@ import m20 from "./scriptsPg/1.19.0";
import m21 from "./scriptsPg/1.20.0";
import m22 from "./scriptsPg/1.21.0";
import m23 from "./scriptsPg/1.22.0";
import m24 from "./scriptsPg/1.23.0";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -57,7 +58,8 @@ const migrations = [
{ version: "1.19.0", run: m20 },
{ version: "1.20.0", run: m21 },
{ version: "1.21.0", run: m22 },
{ version: "1.22.0", run: m23 }
{ version: "1.22.0", run: m23 },
{ version: "1.23.0", run: m24 }
// Add new migrations here as they are created
] as {
version: string;