audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use unique alembic revision ID for thumbnail migration (#977)

The migration was using a1b2c3d4e5f6 which collides with an existing
migration (add_ui_settings_jsonb), causing a cycle detection failure
during deploy.

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

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
2078c501 3ce3f6d2

+2 -2
+2 -2
backend/alembic/versions/2026_02_27_120000_add_thumbnail_url_column.py
··· 1 1 """add thumbnail_url column 2 2 3 - Revision ID: a1b2c3d4e5f6 3 + Revision ID: 75e853113f1b 4 4 Revises: 97e520a2e2fa 5 5 Create Date: 2026-02-27 12:00:00.000000 6 6 ··· 13 13 from alembic import op 14 14 15 15 # revision identifiers, used by Alembic. 16 - revision: str = "a1b2c3d4e5f6" 16 + revision: str = "75e853113f1b" 17 17 down_revision: str | Sequence[str] | None = "97e520a2e2fa" 18 18 branch_labels: str | Sequence[str] | None = None 19 19 depends_on: str | Sequence[str] | None = None