t.index["last_repository_successful_sync_at"],name: "idx_project_registry_synced_repositories_partial",where: "((resync_repository = false) AND (repository_retry_count IS NULL) AND (repository_verification_checksum_sha IS NOT NULL))"
t.index["project_id"],name: "idx_project_registry_on_repo_checksums_and_failure_partial",where: "((repository_verification_checksum_sha IS NULL) AND (last_repository_verification_failure IS NULL))"
t.index["project_id"],name: "idx_project_registry_on_repository_failure_partial",where: "(last_repository_verification_failure IS NOT NULL)"
t.index["project_id"],name: "idx_project_registry_on_wiki_checksums_and_failure_partial",where: "((wiki_verification_checksum_sha IS NULL) AND (last_wiki_verification_failure IS NULL))"
t.index["project_id"],name: "idx_project_registry_on_wiki_failure_partial",where: "(last_wiki_verification_failure IS NOT NULL)"
t.index["repository_retry_count"],name: "idx_project_registry_failed_repositories_partial",where: "((repository_retry_count > 0) OR (last_repository_verification_failure IS NOT NULL) OR repository_checksum_mismatch)"
t.index["repository_retry_count"],name: "idx_project_registry_pending_repositories_partial",where: "((repository_retry_count IS NULL) AND (last_repository_successful_sync_at IS NOT NULL) AND ((resync_repository = true) OR ((repository_verification_checksum_sha IS NULL) AND (last_repository_verification_failure IS NULL))))"
t.index["repository_verification_checksum_sha"],name: "idx_project_registry_on_repository_checksum_sha_partial",where: "(repository_verification_checksum_sha IS NULL)"