Some checks failed
build-and-deploy / build-push-deploy (push) Failing after 2m59s
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`.
24 lines
496 B
Python
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
|