6 lines
143 B
MySQL
6 lines
143 B
MySQL
|
|
--
|
||
|
|
-- Index the in_reply_to column, since we're searching on it now.
|
||
|
|
--
|
||
|
|
|
||
|
|
CREATE INDEX MessageTableInReplyToIndex ON MessageTable(in_reply_to);
|