fix(db): remove redundant a5_007 merge migration (m4_004 already merged into m8_002 on master)
CI / benchmark-publish (pull_request) Has been skipped
CI / helm (pull_request) Successful in 46s
CI / build (pull_request) Successful in 52s
CI / lint (pull_request) Successful in 1m2s
CI / benchmark-regression (pull_request) Failing after 1m9s
CI / quality (pull_request) Successful in 1m13s
CI / security (pull_request) Successful in 1m31s
CI / typecheck (pull_request) Successful in 1m36s
CI / push-validation (pull_request) Successful in 24s
CI / integration_tests (pull_request) Successful in 3m43s
CI / e2e_tests (pull_request) Successful in 4m29s
CI / unit_tests (pull_request) Successful in 4m42s
CI / docker (pull_request) Successful in 1m52s
CI / coverage (pull_request) Successful in 11m35s
CI / coverage (push) Blocked by required conditions
CI / docker (push) Blocked by required conditions
CI / push-validation (push) Waiting to run
CI / status-check (push) Blocked by required conditions
CI / benchmark-publish (push) Has started running
CI / benchmark-regression (push) Has been skipped
CI / unit_tests (push) Has started running
CI / integration_tests (push) Has started running
CI / e2e_tests (push) Has started running
CI / status-check (pull_request) Successful in 3s
CI / helm (push) Successful in 35s
CI / build (push) Successful in 55s
CI / lint (push) Successful in 1m5s
CI / quality (push) Successful in 1m17s
CI / typecheck (push) Successful in 1m36s
CI / security (push) Successful in 1m43s
CI / benchmark-publish (pull_request) Has been skipped
CI / helm (pull_request) Successful in 46s
CI / build (pull_request) Successful in 52s
CI / lint (pull_request) Successful in 1m2s
CI / benchmark-regression (pull_request) Failing after 1m9s
CI / quality (pull_request) Successful in 1m13s
CI / security (pull_request) Successful in 1m31s
CI / typecheck (pull_request) Successful in 1m36s
CI / push-validation (pull_request) Successful in 24s
CI / integration_tests (pull_request) Successful in 3m43s
CI / e2e_tests (pull_request) Successful in 4m29s
CI / unit_tests (pull_request) Successful in 4m42s
CI / docker (pull_request) Successful in 1m52s
CI / coverage (pull_request) Successful in 11m35s
CI / coverage (push) Blocked by required conditions
CI / docker (push) Blocked by required conditions
CI / push-validation (push) Waiting to run
CI / status-check (push) Blocked by required conditions
CI / benchmark-publish (push) Has started running
CI / benchmark-regression (push) Has been skipped
CI / unit_tests (push) Has started running
CI / integration_tests (push) Has started running
CI / e2e_tests (push) Has started running
CI / status-check (pull_request) Successful in 3s
CI / helm (push) Successful in 35s
CI / build (push) Successful in 55s
CI / lint (push) Successful in 1m5s
CI / quality (push) Successful in 1m17s
CI / typecheck (push) Successful in 1m36s
CI / security (push) Successful in 1m43s
This commit was merged in pull request #10764.
This commit is contained in:
-35
@@ -1,35 +0,0 @@
|
||||
"""Merge m4_004_schema_parity and a5_006_action_invariants heads.
|
||||
|
||||
``m4_004_schema_parity_resource_decision_checkpoint`` branched off
|
||||
``m4_003_plan_env_columns`` independently of the main migration chain
|
||||
(m5_001 -> m8_002 -> m6_006 -> m9_001 -> m9_002 -> a5_006), creating two
|
||||
Alembic heads. This no-op merge migration resolves them into a single
|
||||
head so that ``alembic upgrade head`` and the template-DB creation
|
||||
script work correctly.
|
||||
|
||||
Revision ID: a5_007_merge_m4_004_and_a5_006
|
||||
Revises: m4_004_schema_parity_resource_decision_checkpoint,
|
||||
a5_006_action_invariants_unique_constraint
|
||||
Create Date: 2026-04-24 00:00:00
|
||||
"""
|
||||
|
||||
from collections.abc import Sequence
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = "a5_007_merge_m4_004_and_a5_006"
|
||||
down_revision: str | Sequence[str] | None = (
|
||||
"m4_004_schema_parity_resource_decision_checkpoint",
|
||||
"a5_006_action_invariants_unique_constraint",
|
||||
)
|
||||
branch_labels: str | Sequence[str] | None = None
|
||||
depends_on: str | Sequence[str] | None = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
"""No-op merge migration."""
|
||||
pass
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
"""No-op merge migration."""
|
||||
pass
|
||||
Reference in New Issue
Block a user