Missed file for tag case insensitivity

This commit is contained in:
Dan Stillman 2008-06-16 21:01:09 +00:00
parent 413670b09d
commit 9bf8333ea8

View File

@ -71,7 +71,7 @@ CREATE INDEX itemAttachments_mimeType ON itemAttachments(mimeType);
-- Individual entries for each tag
CREATE TABLE tags (
tagID INTEGER PRIMARY KEY,
name TEXT,
name TEXT COLLATE NOCASE,
type INT,
dateModified DEFAULT CURRENT_TIMESTAMP NOT NULL,
key TEXT NOT NULL UNIQUE,