osint-dashboard/alembic/versions/006_merge_phase2_news.py
Sirius DevOps 1b1f2d3b3a
Some checks failed
build-and-deploy / build-push-deploy (push) Failing after 2m59s
fix: merge alembic heads so the dashboard stops crash-looping
005_phase2 and 005_news_items both revised 004_camera_enum. Entrypoint
`alembic upgrade head` then failed and the app never bound :8000 (502
over Tailscale). Merge revision + `upgrade heads`.
2026-08-28 18:29:06 -04:00

24 lines
496 B
Python

"""merge 005_phase2 and 005_news_items
Revision ID: 006_merge_heads
Revises: 005_phase2, 005_news_items
Create Date: 2026-08-28
Two PRs both parented 004_camera_enum (phase2 geofences + news_items).
`alembic upgrade head` then fails and crash-loops the dashboard.
"""
from alembic import op # noqa: F401
revision = "006_merge_heads"
down_revision = ("005_phase2", "005_news_items")
branch_labels = None
depends_on = None
def upgrade() -> None:
pass
def downgrade() -> None:
pass