UNIQUE constraint failed: feeds_last_items.url #32
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Miroslavsckaya/tg_rss_bot#32
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When updating last feed items in the database, SQL query can fail sometimes because current database schema is relying on
url
of theFeedItem
to be unique, but it's not the oftenly.We should rely on something like
guid
and store it instead. We also probably don't need anUNIQUE
constraint there at all.This could be fixed while working on #15.