2010-12-17 20:47:50 +00:00
|
|
|
-- Add indexes for sorting changes in 0.9.7
|
2010-12-17 22:37:46 +00:00
|
|
|
|
2010-12-18 00:08:37 +00:00
|
|
|
-- Allows sorting public timeline, api/statuses/repeats, and conversations by timestamp efficiently
|
2010-12-17 23:13:09 +00:00
|
|
|
alter table notice
|
|
|
|
add index notice_created_id_is_local_idx (created,id,is_local),
|
2010-12-18 00:08:37 +00:00
|
|
|
|
|
|
|
add index notice_repeat_of_created_id_idx (repeat_of, created, id),
|
2010-12-17 23:13:09 +00:00
|
|
|
drop index notice_repeatof_idx,
|
2010-12-18 00:08:37 +00:00
|
|
|
|
|
|
|
add index notice_conversation_created_id_idx (conversation, created, id),
|
|
|
|
drop index notice_conversation_idx;
|
2010-12-17 22:37:46 +00:00
|
|
|
|
|
|
|
-- 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);
|
2010-12-17 22:43:45 +00:00
|
|
|
|
|
|
|
-- Needed for sorting reply/mentions timelines
|
|
|
|
alter table reply add index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id);
|
2010-12-17 22:51:37 +00:00
|
|
|
|
|
|
|
-- 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);
|
2010-12-18 00:12:44 +00:00
|
|
|
|
|
|
|
-- 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);
|
2010-12-18 00:22:26 +00:00
|
|
|
|
|
|
|
-- 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);
|