mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
feat(alembic): B2 drop unused pm_approvals Task column
Smoke run analysis initially flagged three Task fields as unused (pm_approvals, quick_context, proactive_context). A follow-up audit found quick_context (stores original_developer marker + doc notes + PR creator + escalation notes) and proactive_context (RAG injection) are actively used. Only pm_approvals is truly orphaned. Migration 014 drops pm_approvals; downgrade() recreates it if ever needed. The two false-positive fields stay untouched. Spec ref: docs/superpowers/specs/2026-05-12-post-smoke-3-fixes-design.md section B2 (re-scoped 2026-05-12).
This commit is contained in:
@@ -346,7 +346,6 @@ async def smoke_test_batch(db_session: AsyncSession) -> AsyncIterator[list[UUID]
|
||||
pr_url="https://github.com/example/smoke/pull/1",
|
||||
docs_complete=True,
|
||||
pr_created=True,
|
||||
pm_approvals={"cell_pm": str(pm_agent.id)},
|
||||
created_by=system_agent.id,
|
||||
assigned_to=dev_agent.id,
|
||||
team=Team.BACKEND,
|
||||
|
||||
Reference in New Issue
Block a user