fix: remove merge migration that references non-existent file

The server is missing 2026_05_27_make_project_id_nullable.py but the
merge migration referenced it. Removing the merge migration leaves a
clean single head chain.
This commit is contained in:
Alex Blank
2026-05-27 10:48:25 +02:00
parent a4604d6a9a
commit 943b9db5c7
@@ -1,27 +0,0 @@
"""merge_git_mount_heads
Revision ID: 2026_05_27_merge_heads
Revises: 2026_05_27_external_repos, 2026_05_27_make_project_id_nullable
Create Date: 2026-05-27 08:45:00.000000
"""
from typing import Sequence, Union
from alembic import op
# revision identifiers, used by Alembic.
revision: str = "2026_05_27_merge_heads"
down_revision: Union[str, Sequence[str], None] = ("2026_05_27_external_repos", "2026_05_27_make_project_id_nullable")
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
# This is a merge migration - no schema changes needed
# It resolves the multiple heads created by the renamed migration
pass
def downgrade() -> None:
pass