Add base migrations

This commit is contained in:
Owen
2026-08-17 15:54:42 -04:00
parent 7e9407fbc7
commit 075d112861
4 changed files with 160 additions and 2 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.21.1";
import m24 from "./scriptsPg/1.22.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.21.1", run: m23 }
{ version: "1.21.1", run: m23 },
{ version: "1.22.0", run: m24 }
// Add new migrations here as they are created
] as {
version: string;