Add migration to fix policy delete issues

Ref #3257
This commit is contained in:
Owen
2026-07-01 10:37:17 -04:00
parent e3ef592778
commit 108cb6216c
3 changed files with 114 additions and 2 deletions
+3 -1
View File
@@ -45,6 +45,7 @@ import m39 from "./scriptsSqlite/1.18.3";
import m40 from "./scriptsSqlite/1.18.4";
import m41 from "./scriptsSqlite/1.19.0";
import m42 from "./scriptsSqlite/1.19.1";
import m43 from "./scriptsSqlite/1.19.5";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -87,7 +88,8 @@ const migrations = [
{ version: "1.18.3", run: m39 },
{ version: "1.18.4", run: m40 },
{ version: "1.19.0", run: m41 },
{ version: "1.19.1", run: m42 }
{ version: "1.19.1", run: m42 },
{ version: "1.19.5", run: m43 }
// Add new migrations here as they are created
] as const;