]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/096to097.sql
5947538da86a5b313697be7446947e8bb825da9e
[quix0rs-gnu-social.git] / db / 096to097.sql
1 -- Add indexes for sorting changes in 0.9.7
2
3 -- Allows sorting public timeline and api/statuses/repeats by timestamp efficiently
4 alter table notice
5     add index notice_created_id_is_local_idx (created,id,is_local),
6     drop index notice_repeatof_idx,
7     add index notice_repeat_of_created_id_idx (repeat_of, created, id);
8
9 -- Allows sorting tag-filtered public timeline by timestamp efficiently
10 alter table notice_tag add index notice_tag_tag_created_notice_id_idx (tag, created, notice_id);
11
12 -- Needed for sorting reply/mentions timelines
13 alter table reply add index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id);
14
15 -- Needed for sorting group messages by timestamp
16 alter table group_inbox add index group_inbox_group_id_created_notice_id_idx (group_id, created, notice_id);