Create index on statuses (read) for performance reasons.

This commit is contained in:
Brent Simmons 2017-11-19 11:40:45 -08:00
parent 3f85024aea
commit eff6acba94

View File

@ -14,3 +14,4 @@ CREATE INDEX if not EXISTS articles_feedID_index on articles (feedID);
CREATE INDEX if not EXISTS tags_tagName_index on tags (tagName COLLATE NOCASE); CREATE INDEX if not EXISTS tags_tagName_index on tags (tagName COLLATE NOCASE);
CREATE INDEX if not EXISTS statuses_read_index on statuses (read);