add postgres migration

This commit is contained in:
miloschwartz
2025-12-21 15:43:38 -05:00
parent 81149085fa
commit 2f8ecf17ed
4 changed files with 195 additions and 3 deletions

View File

@@ -15,6 +15,7 @@ import m7 from "./scriptsPg/1.11.0";
import m8 from "./scriptsPg/1.11.1";
import m9 from "./scriptsPg/1.12.0";
import m10 from "./scriptsPg/1.13.0";
import m11 from "./scriptsPg/1.14.0";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -30,7 +31,8 @@ const migrations = [
{ version: "1.11.0", run: m7 },
{ version: "1.11.1", run: m8 },
{ version: "1.12.0", run: m9 },
{ version: "1.13.0", run: m10 }
{ version: "1.13.0", run: m10 },
{ version: "1.14.0", run: m11 }
// Add new migrations here as they are created
] as {
version: string;