Files
meshcore-analyzer/cmd/server
Kpa-clawbot 847964656a chore(preflight): annotate small _async_migrations schema ops
The pr-preflight async-migration gate flags any new ALTER TABLE /
CREATE TABLE in a migration-shaped file without an explicit annotation.
Two sites are legitimately safe-at-scale but lacked the annotation:

- cmd/ingestor/async_migration_progress.go ADD COLUMN on the
  bookkeeping table _async_migrations (single-digit rows; ADD COLUMN
  is O(rows)).
- cmd/server/async_migrations_test.go CREATE TABLE on a fresh
  in-memory test DB (test setup, not a real schema migration).

Annotation-only — no behavior change. Both call sites already had
runtime safeguards (duplicate-column tolerance, test isolation).

cross-stack: justified — annotations only; no functional change.
PR #1735 already declares the frontend+backend coupling.
2026-06-16 19:18:02 +00:00
..