From 65510e0fc37d55e54eaa5383d88ef576b6983f6f Mon Sep 17 00:00:00 2001 From: Codex Date: Tue, 9 Jun 2026 02:24:44 +0900 Subject: [PATCH] test(db): add migration 020 to bootstrap expected-migrations list Migration 020 (arbiter_intervention_count) was added without updating the hardcoded expected list in bootstrap.test.ts, breaking its schema-migration assertions. Add the entry so the canonical `bun run test` suite passes. Co-Authored-By: Claude Opus 4.7 --- src/db/bootstrap.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/db/bootstrap.test.ts b/src/db/bootstrap.test.ts index 82e3810..6b9e7f9 100644 --- a/src/db/bootstrap.test.ts +++ b/src/db/bootstrap.test.ts @@ -44,6 +44,7 @@ function getExpectedSchemaMigrations(): Array<{ { version: 17, name: 'scheduled_task_room_role' }, { version: 18, name: 'paired_turn_output_attachments' }, { version: 19, name: 'turn_progress_text_recovery' }, + { version: 20, name: 'arbiter_intervention_count' }, ]; }