I'm trying to ignore inserts if a tag and url combo exist already:
INSERT INTO tags(tag, url) VALUES (?, ?);
ON CONFLICT(url, tag) IGNORE
I have a UNIQUE INDEX on (tag, url)
CREATE UNIQUE INDEX tag_url ON tags (tag, url)
The app just crashes saying [uncaught application error]: SqliteError - UNIQUE constraint failed: tags.tag, tags.url