28 lines
848 B
Python
28 lines
848 B
Python
"""reconcile the legacy remote database revision
|
|
|
|
Revision ID: d4e5f6a7b8c9
|
|
Revises: a2b3c4d5e6f7
|
|
Create Date: 2026-08-05 15:30:00
|
|
|
|
The shared development database was stamped with this revision by an older
|
|
migration history. The corresponding file was lost while branches were
|
|
merged. Keeping the marker in the active chain lets Alembic safely continue
|
|
without rewriting the existing database or replaying the baseline migration.
|
|
"""
|
|
|
|
from collections.abc import Sequence
|
|
|
|
|
|
revision: str = "d4e5f6a7b8c9"
|
|
down_revision: str | Sequence[str] | None = "a2b3c4d5e6f7"
|
|
branch_labels: str | Sequence[str] | None = None
|
|
depends_on: str | Sequence[str] | None = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
"""Preserve the already-applied legacy revision marker."""
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""The compatibility marker has no schema operation to reverse."""
|