]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - db/statusnet.sql
Update sorting on api/statuses/retweets: adds notice_repeat_of_created_id_idx index...
[quix0rs-gnu-social.git] / db / statusnet.sql
index 5898abf4639ec9069306c2bbee20a70d8c17ab0b..9624edd6f01f3d892e5cbaf07ca59fb1087dce77 100644 (file)
@@ -137,11 +137,15 @@ create table notice (
     -- For profile timelines...
     index notice_profile_id_idx (profile_id,created,id),
 
+    -- For api/statuses/repeats...
+    index notice_repeat_of_created_id_idx (repeat_of, created, id),
+
     -- Are these enough?
     index notice_conversation_idx (conversation),
     index notice_created_idx (created),
     index notice_replyto_idx (reply_to),
     index notice_repeatof_idx (repeat_of),
+
     FULLTEXT(content)
 ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;