fix(ci): update roadmap-plugin schema-version literal missed by the v109 sweep (plugins/ not covered by packages/ grep)

This commit is contained in:
gsxdsm
2026-06-05 02:23:36 -07:00
parent 3bdba87e6c
commit 06f6a0aa28

View File

@@ -743,10 +743,10 @@ describe("RoadmapStore", () => {
});
describe("schema version", () => {
it("schema version is 108 after init", () => {
it("schema version is 109 after init", () => {
// Tracks @fusion/core's SCHEMA_VERSION (the roadmap store layers on core's
// Database). Bump this in lockstep when core adds a migration.
expect(db.getSchemaVersion()).toBe(108);
expect(db.getSchemaVersion()).toBe(109);
});
});