Sort indexing fix for profile sidebar: add group_member_profile_id_created_idx to group_member table, streamlines sorting of your group memberships in the sidebar
This commit is contained in:
parent
c0669969f2
commit
5300d657cc
@ -21,3 +21,6 @@ alter table group_inbox add index group_inbox_group_id_created_notice_id_idx (gr
|
||||
|
||||
-- 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);
|
||||
|
@ -463,7 +463,10 @@ create table group_member (
|
||||
|
||||
constraint primary key (group_id, profile_id),
|
||||
index group_member_profile_id_idx (profile_id),
|
||||
index group_member_created_idx (created)
|
||||
index group_member_created_idx (created),
|
||||
|
||||
-- To pull up a list of someone's groups in order joined
|
||||
index group_member_profile_id_created_idx (profile_id, created)
|
||||
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user