feat(FN-1982): merge fusion/fn-1982

This commit is contained in:
gsxdsm
2026-04-17 14:09:37 -07:00
parent 217ccdd4aa
commit e51393285b
16 changed files with 300 additions and 37 deletions

View File

@@ -59,7 +59,7 @@ export function fromJson<T>(json: string | null | undefined): T | undefined {
// ── Schema Definition ────────────────────────────────────────────────
const SCHEMA_VERSION = 36;
const SCHEMA_VERSION = 37;
function normalizeTaskComments(
steeringComments: SteeringComment[] | undefined,
@@ -1464,6 +1464,12 @@ export class Database {
});
}
if (version < 37) {
this.applyMigration(37, () => {
this.addColumnIfMissing("mission_validator_runs", "taskId", "TEXT");
});
}
}
/**