"""merge admin access control and event host contact

`add-admin-access-control` and `add-event-host-contact` were developed in parallel worktrees,
so both branched off e1f4a90c73bd and merging their pull requests left the revision graph
forked. Nothing to do here: the two touch disjoint columns — f2c6b481de95 adds
`event.owner_admin_id` and rebuilds `admin_user`, a3c9d05e2f71 adds `event.host_*` — so they
apply in either order. This revision only rejoins the branches so `alembic upgrade head`
(what `make migrate` runs) has a single head to aim at again.

Revision ID: b264dea0d7c6
Revises: a3c9d05e2f71, f2c6b481de95
Create Date: 2026-08-19 08:36:19.148684
"""

from collections.abc import Sequence


revision: str = "b264dea0d7c6"
down_revision: tuple[str, str] | None = ("a3c9d05e2f71", "f2c6b481de95")
branch_labels: str | Sequence[str] | None = None
depends_on: str | Sequence[str] | None = None


def upgrade() -> None:
    """No-op: a merge point, not a schema change."""


def downgrade() -> None:
    """No-op: splitting the graph again needs no DDL."""
