]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Add index on group_index.notice_id, needed to pull list of target groups for inbox...
authorBrion Vibber <brion@pobox.com>
Mon, 1 Mar 2010 21:09:20 +0000 (13:09 -0800)
committerBrion Vibber <brion@pobox.com>
Mon, 1 Mar 2010 21:09:20 +0000 (13:09 -0800)
Index was present on live identi.ca database but missing from master definitions: group_inbox_notice_id_idx

db/08to09.sql
db/statusnet.sql

index 582981614e30a2f9892f4022e8ac9696d12d3d7b..f30572154197c96d922c545af69a6c256d495eaa 100644 (file)
@@ -112,3 +112,6 @@ alter table queue_item_new rename to queue_item;
 
 alter table file_to_post
     add index post_id_idx (post_id);
+
+alter table group_inbox
+    add index group_inbox_notice_id_idx (notice_id);
index 4aa37ce1c5bfa1e3a874a0c3521d06ede33c9611..3f95948e1ed5ede5d9cde05511f78fb49f657021 100644 (file)
@@ -458,7 +458,8 @@ create table group_inbox (
     created datetime not null comment 'date the notice was created',
 
     constraint primary key (group_id, notice_id),
-    index group_inbox_created_idx (created)
+    index group_inbox_created_idx (created),
+    index group_inbox_notice_id_idx (notice_id)
 
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;