X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=db%2F096to097.sql;h=209a3a8811ff0c1aff76acfe613611ce260dfb51;hb=37cf7c0e8ccaffb11b743da45eaea4a2897bad94;hp=38e4e958b8e888b79dcdd1f4920d692a9a32eb98;hpb=00a5a5342ab0c44d59697cded81f6e96ba49c42c;p=quix0rs-gnu-social.git diff --git a/db/096to097.sql b/db/096to097.sql index 38e4e958b8..209a3a8811 100644 --- a/db/096to097.sql +++ b/db/096to097.sql @@ -1,7 +1,26 @@ -- Add indexes for sorting changes in 0.9.7 --- Allows sorting public timeline by timestamp efficiently -alter table notice add index notice_created_id_is_local_idx (created,id,is_local); +-- Allows sorting public timeline, api/statuses/repeats, and conversations by timestamp efficiently +alter table notice + add index notice_created_id_is_local_idx (created,id,is_local), + + add index notice_repeat_of_created_id_idx (repeat_of, created, id), + drop index notice_repeatof_idx, + + add index notice_conversation_created_id_idx (conversation, created, id), + drop index notice_conversation_idx; -- Allows sorting tag-filtered public timeline by timestamp efficiently alter table notice_tag add index notice_tag_tag_created_notice_id_idx (tag, created, notice_id); + +-- Needed for sorting reply/mentions timelines +alter table reply add index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id); + +-- Needed for sorting group messages by timestamp +alter table group_inbox add index group_inbox_group_id_created_notice_id_idx (group_id, created, notice_id); + +-- Helps make some reverse role lookups more efficient if there's a lot of assigned accounts +alter table profile_role add index profile_role_role_created_profile_id_idx (role, created, profile_id); + +-- Fix for sorting a user's group memberships by order joined +alter table group_member add index group_member_profile_id_created_idx (profile_id, created);