X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=db%2Fstatusnet.sql;h=4a24d016a286e5a2e2cdaffc7314543a5568cb64;hb=f6cb4ea58d1d75bb2c93fe9294266f6ea7a5d4aa;hp=8b38f9ffe303faa1609f9d6382281553e1c51a96;hpb=fb65d5901d586a13886b81d84de8959b67b6aa9e;p=quix0rs-gnu-social.git diff --git a/db/statusnet.sql b/db/statusnet.sql index 8b38f9ffe3..4a24d016a2 100644 --- a/db/statusnet.sql +++ b/db/statusnet.sql @@ -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; @@ -627,7 +630,8 @@ create table profile_role ( role varchar(32) not null comment 'string representing the role', created datetime not null comment 'date the role was granted', - constraint primary key (profile_id, role) + constraint primary key (profile_id, role), + index profile_role_role_created_profile_id_idx (role, created, profile_id) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;