Merge branch 'master' of gitorious.org:statusnet/mainline into testing
This commit is contained in:
commit
7bbdea1032
|
@ -110,3 +110,8 @@ insert into queue_item_new (frame,transport,created,claimed)
|
||||||
alter table queue_item rename to queue_item_old;
|
alter table queue_item rename to queue_item_old;
|
||||||
alter table queue_item_new rename to queue_item;
|
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);
|
||||||
|
|
|
@ -458,7 +458,8 @@ create table group_inbox (
|
||||||
created datetime not null comment 'date the notice was created',
|
created datetime not null comment 'date the notice was created',
|
||||||
|
|
||||||
constraint primary key (group_id, notice_id),
|
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;
|
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||||
|
|
||||||
|
@ -523,7 +524,8 @@ create table file_to_post (
|
||||||
post_id integer comment 'id of the notice it belongs to' references notice (id),
|
post_id integer comment 'id of the notice it belongs to' references notice (id),
|
||||||
modified timestamp comment 'date this record was modified',
|
modified timestamp comment 'date this record was modified',
|
||||||
|
|
||||||
constraint primary key (file_id, post_id)
|
constraint primary key (file_id, post_id),
|
||||||
|
index post_id_idx (post_id)
|
||||||
|
|
||||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user