fix migration number and add allowed_headers migration

This commit is contained in:
miloschwartz
2025-06-04 17:15:11 -04:00
parent 8800ec9675
commit af98610d0d
3 changed files with 74 additions and 31 deletions

View File

@@ -20,7 +20,7 @@ import m16 from "./scriptsSqlite/1.0.0";
import m17 from "./scriptsSqlite/1.1.0";
import m18 from "./scriptsSqlite/1.2.0";
import m19 from "./scriptsSqlite/1.3.0";
import m20 from "./scriptsSqlite/1.3.0";
import m20 from "./scriptsSqlite/1.5.0";
// THIS CANNOT IMPORT ANYTHING FROM THE SERVER
// EXCEPT FOR THE DATABASE AND THE SCHEMA
@@ -41,7 +41,7 @@ const migrations = [
{ version: "1.1.0", run: m17 },
{ version: "1.2.0", run: m18 },
{ version: "1.3.0", run: m19 },
{ version: "1.4.0", run: m20 },
{ version: "1.5.0", run: m20 },
// Add new migrations here as they are created
] as const;