audio streaming app plyr.fm

fix: replace hand-written migration with alembic-generated one (#968)

the previous migration used a placeholder revision ID that caused a
cycle detection error during staging deploy. regenerated properly
with `alembic revision`.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by zzstoatzz.io

Claude Opus 4.6 and committed by
GitHub
8903ae5a b6e89af9

+4 -4
+4 -4
backend/alembic/versions/2026_02_26_000000_fix_jsonb_null_support_gate.py backend/alembic/versions/2026_02_26_085017_97e520a2e2fa_fix_jsonb_null_in_support_gate.py
··· 1 - """fix JSONB null in support_gate — convert to SQL NULL 1 + """fix jsonb null in support_gate 2 2 3 - Revision ID: a1b2c3d4e5f6 3 + Revision ID: 97e520a2e2fa 4 4 Revises: f4ff6ce7d78b 5 - Create Date: 2026-02-26 00:00:00.000000 5 + Create Date: 2026-02-26 08:50:17.916457 6 6 7 7 """ 8 8 ··· 13 13 from alembic import op 14 14 15 15 # revision identifiers, used by Alembic. 16 - revision: str = "a1b2c3d4e5f6" 16 + revision: str = "97e520a2e2fa" 17 17 down_revision: str | Sequence[str] | None = "f4ff6ce7d78b" 18 18 branch_labels: str | Sequence[str] | None = None 19 19 depends_on: str | Sequence[str] | None = None