gabriel / musehub public
0011_coupling_indexes.py python
34 lines 788 B
Raw
sha256:1dd27e6d5c24550177b01b0a171e8375c07cf046b549e7683364706b6522d3bc docs(#139): mark all 11 checklist items resolved, document … Sonnet 5 12 days ago
1 """coupling: add co_changes + file_a indexes to musehub_intel_coupling
2
3 Revision ID: 0011
4 Revises: 0010
5 """
6
7 from __future__ import annotations
8
9 from typing import Union
10
11 from alembic import op
12
13 revision: str = "0011"
14 down_revision: Union[str, None] = "0010"
15 branch_labels = None
16 depends_on = None
17
18
19 def upgrade() -> None:
20 op.create_index(
21 "ix_intel_coupling_repo_co",
22 "musehub_intel_coupling",
23 ["repo_id", "co_changes"],
24 )
25 op.create_index(
26 "ix_intel_coupling_repo_file_a",
27 "musehub_intel_coupling",
28 ["repo_id", "file_a"],
29 )
30
31
32 def downgrade() -> None:
33 op.drop_index("ix_intel_coupling_repo_file_a", table_name="musehub_intel_coupling")
34 op.drop_index("ix_intel_coupling_repo_co", table_name="musehub_intel_coupling")
File History 2 commits
sha256:1dd27e6d5c24550177b01b0a171e8375c07cf046b549e7683364706b6522d3bc docs(#139): mark all 11 checklist items resolved, document … Sonnet 5 12 days ago
sha256:649011bedd713e22f7dca4c4be94bdefbf3b10950d9fc80235928d0b0b823be8 docs: track issue #139 (two-column app-shell refactor) plan… Sonnet 5 12 days ago