generated from coulomb/repo-seed
Implements CUST-WP-0007. Resolves inconsistencies I-1, I-2, I-5, I-6
identified in the GEMS audit (GenericEntityModellingSystem.md).
Pass 1 (e1f2a3b4c5d6): domain_id FK on extension_points and
technical_debt (replaces raw string column); repo_id FK on contributions.
Fixes domain-filtering bugs in EP/TD dashboard pages.
Pass 2 (f2a3b4c5d6e7): repo_id nullable FK on workstreams, aligning
the GEMS primary attachment with ADR-001 (repo > topic). Dashboard
pages updated to prefer repo->domain over topic->domain.
Pass 3 (a3b4c5d6e7f8): SBOMSnapshot container entity (GEMS Complex
between Repository and SBOMEntry). Ingest is now additive — each call
creates a new snapshot; history is retained. List/report endpoints
filter to latest snapshot per repo via _latest_snapshot_ids_subquery().
New endpoints: GET /sbom/snapshots/, GET /sbom/snapshots/{id}/.
Dashboard gains a Snapshot History section.
Also adds GEMS analysis artefacts: wiki/GEMS-StateHub-TypeRegistry.md,
wiki/GEMS-StateHub-SWOT.md, workplans/CUST-WP-0006 (analysis),
workplans/CUST-WP-0007 (migration, now completed).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
"""GEMS Pass 2: add repo_id FK to workstreams (ADR-001 alignment)
|
|
|
|
Revision ID: f2a3b4c5d6e7
|
|
Revises: e1f2a3b4c5d6
|
|
Create Date: 2026-03-02 00:00:00.000000
|
|
"""
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
revision: str = "f2a3b4c5d6e7"
|
|
down_revision: Union[str, None] = "e1f2a3b4c5d6"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.add_column(
|
|
"workstreams",
|
|
sa.Column("repo_id", postgresql.UUID(as_uuid=True), nullable=True),
|
|
)
|
|
op.create_foreign_key(
|
|
"fk_workstream_repo_id",
|
|
"workstreams", "managed_repos",
|
|
["repo_id"], ["id"],
|
|
ondelete="SET NULL",
|
|
)
|
|
op.create_index("ix_workstreams_repo_id", "workstreams", ["repo_id"])
|
|
|
|
# Best-effort backfill: topic → domain → first repo (by created_at)
|
|
# Records with no repo in their domain remain NULL (requires manual resolution)
|
|
op.execute("""
|
|
UPDATE workstreams ws
|
|
SET repo_id = sub.repo_id
|
|
FROM (
|
|
SELECT DISTINCT ON (ws.id)
|
|
ws.id AS ws_id,
|
|
mr.id AS repo_id
|
|
FROM workstreams ws
|
|
JOIN topics t ON t.id = ws.topic_id
|
|
JOIN managed_repos mr ON mr.domain_id = t.domain_id
|
|
WHERE mr.status = 'active'
|
|
ORDER BY ws.id, mr.created_at
|
|
) sub
|
|
WHERE ws.id = sub.ws_id
|
|
""")
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_index("ix_workstreams_repo_id", table_name="workstreams")
|
|
op.drop_constraint("fk_workstream_repo_id", "workstreams", type_="foreignkey")
|
|
op.drop_column("workstreams", "repo_id")
|