Fix alembic mirgration which was broken by the IDE's refactor feature

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Maximilian Dorninger
2025-10-29 16:18:12 +01:00
committed by GitHub
parent 1a1d38aa29
commit 3fb85c766f

View File

@@ -89,7 +89,7 @@ def upgrade() -> None:
"indexer_query_result",
sa.Column("id", sa.UUID(), nullable=False),
sa.Column("title", sa.String(), nullable=False),
sa.Column("_download_url", sa.String(), nullable=False),
sa.Column("download_url", sa.String(), nullable=False),
sa.Column("seeders", sa.Integer(), nullable=False),
sa.Column("flags", postgresql.ARRAY(sa.String()), nullable=True),
sa.Column(