]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - db/096to097.sql
Add request_queue table and user_group.join_policy column, for upcoming join & subscr...
[quix0rs-gnu-social.git] / db / 096to097.sql
1 -- Add indexes for sorting changes in 0.9.7
2
3 -- Allows sorting public timeline, api/statuses/repeats, and conversations by timestamp efficiently
4 alter table notice
5     add index notice_created_id_is_local_idx (created,id,is_local),
6
7     add index notice_repeat_of_created_id_idx (repeat_of, created, id),
8     drop index notice_repeatof_idx,
9
10     add index notice_conversation_created_id_idx (conversation, created, id),
11     drop index notice_conversation_idx;
12
13 -- Allows sorting tag-filtered public timeline by timestamp efficiently
14 alter table notice_tag add index notice_tag_tag_created_notice_id_idx (tag, created, notice_id);
15
16 -- Needed for sorting reply/mentions timelines
17 alter table reply add index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id);
18
19 -- Needed for sorting group messages by timestamp
20 alter table group_inbox add index group_inbox_group_id_created_notice_id_idx (group_id, created, notice_id);
21
22 -- Helps make some reverse role lookups more efficient if there's a lot of assigned accounts
23 alter table profile_role add index profile_role_role_created_profile_id_idx (role, created, profile_id);
24
25 -- Fix for sorting a user's group memberships by order joined
26 alter table group_member add index group_member_profile_id_created_idx (profile_id, created);