Duplicate Tags in database

Hi!

I was looking in the database to remove old tags. When I saw that the tag “Helix” occurred 3 times. I suggest that you set the following rules for that table

CREATE TABLE Tags (
Id INTEGER PRIMARY KEY AUTOINCREMENT
NOT NULL,
Label TEXT NOT NULL
UNIQUE ON CONFLICT REPLACE
);

This is already in develop.

1 Like