geary/sql/version-008.sql
Charles Lindsay eb643abaa6 Add index to in_reply_to column; fix #6504
Since we're searching on the column, we should have an index on it.
2013-03-11 14:34:33 -07:00

5 lines
143 B
SQL

--
-- Index the in_reply_to column, since we're searching on it now.
--
CREATE INDEX MessageTableInReplyToIndex ON MessageTable(in_reply_to);