add indexer field to IndexerQueryResult and update related components; display indexer name to use

This commit is contained in:
maxDorninger
2025-10-28 22:17:00 +01:00
parent fdffa38c92
commit bae3906063
15 changed files with 3778 additions and 3841 deletions

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(