]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/096to097.sql
Update sorting on reply/mentions timeline: added reply_profile_id_modified_notice_id_...
[quix0rs-gnu-social.git] / db / 096to097.sql
1 -- Add indexes for sorting changes in 0.9.7
2
3 -- Allows sorting public timeline by timestamp efficiently
4 alter table notice add index notice_created_id_is_local_idx (created,id,is_local);
5
6 -- Allows sorting tag-filtered public timeline by timestamp efficiently
7 alter table notice_tag add index notice_tag_tag_created_notice_id_idx (tag, created, notice_id);
8
9 -- Needed for sorting reply/mentions timelines
10 alter table reply add index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id);