Actually run the migrations; update exit nodes

Fix #1718
Fix #1720
This commit is contained in:
Owen
2025-10-20 20:55:24 -07:00
parent 60379a7b4e
commit 4a59823e58
4 changed files with 19 additions and 4 deletions

View File

@@ -30,6 +30,7 @@ import m25 from "./scriptsSqlite/1.10.0";
import m26 from "./scriptsSqlite/1.10.1";
import m27 from "./scriptsSqlite/1.10.2";
import m28 from "./scriptsSqlite/1.11.0";
import m29 from "./scriptsSqlite/1.11.1";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -59,6 +60,7 @@ const migrations = [
{ version: "1.10.1", run: m26 },
{ version: "1.10.2", run: m27 },
{ version: "1.11.0", run: m28 },
{ version: "1.11.1", run: m29 }
// Add new migrations here as they are created
] as const;