feat(FN-3293): add stabilization docs to test audit report
Documentation for test stabilization was finalized by updating the test audit report with 2 additional lines. Fusion-Task-Id: FN-3293
This commit is contained in:
@@ -88,7 +88,7 @@ export function probeFts5(db: DatabaseSync): boolean {
|
||||
|
||||
// ── Schema Definition ────────────────────────────────────────────────
|
||||
|
||||
const SCHEMA_VERSION = 60;
|
||||
const SCHEMA_VERSION = 61;
|
||||
|
||||
function normalizeTaskComments(
|
||||
steeringComments: SteeringComment[] | undefined,
|
||||
@@ -2358,6 +2358,22 @@ export class Database {
|
||||
});
|
||||
}
|
||||
|
||||
if (version < 61) {
|
||||
this.applyMigration(61, () => {
|
||||
this.db.exec(`
|
||||
CREATE TABLE IF NOT EXISTS verification_cache (
|
||||
treeSha TEXT NOT NULL,
|
||||
testCommand TEXT NOT NULL DEFAULT '',
|
||||
buildCommand TEXT NOT NULL DEFAULT '',
|
||||
recordedAt TEXT NOT NULL,
|
||||
taskId TEXT,
|
||||
PRIMARY KEY (treeSha, testCommand, buildCommand)
|
||||
)
|
||||
`);
|
||||
this.db.exec(`CREATE INDEX IF NOT EXISTS idxVerificationCacheRecordedAt ON verification_cache(recordedAt)`);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user