add pg migration

This commit is contained in:
miloschwartz
2026-02-25 11:37:31 -08:00
parent e18c9afc2d
commit 388f710379
3 changed files with 188 additions and 4 deletions

View File

@@ -5,6 +5,7 @@ import semver from "semver";
import { versionMigrations } from "../db/pg";
import { __DIRNAME, APP_VERSION } from "@server/lib/consts";
import path from "path";
import { build } from "@server/build";
import m1 from "./scriptsPg/1.6.0";
import m2 from "./scriptsPg/1.7.0";
import m3 from "./scriptsPg/1.8.0";
@@ -19,7 +20,7 @@ import m11 from "./scriptsPg/1.14.0";
import m12 from "./scriptsPg/1.15.0";
import m13 from "./scriptsPg/1.15.3";
import m14 from "./scriptsPg/1.15.4";
import { build } from "@server/build";
import m15 from "./scriptsPg/1.16.0";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -39,7 +40,8 @@ const migrations = [
{ version: "1.14.0", run: m11 },
{ version: "1.15.0", run: m12 },
{ version: "1.15.3", run: m13 },
{ version: "1.15.4", run: m14 }
{ version: "1.15.4", run: m14 },
{ version: "1.16.0", run: m15 }
// Add new migrations here as they are created
] as {
version: string;