diff options
author | Brion Vibber <brion@pobox.com> | 2010-12-17 14:37:46 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-12-17 14:37:46 -0800 |
commit | 00a5a5342ab0c44d59697cded81f6e96ba49c42c (patch) | |
tree | 3cca20cf4b0e6f03b0ceec93b74854a5ee3a37c8 /db/096to097.sql | |
parent | 33daace6cb7bf607b94ae684389d5577c290f026 (diff) |
Update sorting for tag-filtered public timeline: needs notice_tag_tag_created_notice_id_idx index added to notice_tag
Diffstat (limited to 'db/096to097.sql')
-rw-r--r-- | db/096to097.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/096to097.sql b/db/096to097.sql index 53f4e97c9..38e4e958b 100644 --- a/db/096to097.sql +++ b/db/096to097.sql @@ -1,3 +1,7 @@ -- Add indexes for sorting changes in 0.9.7 + -- Allows sorting public timeline by timestamp efficiently alter table notice add index notice_created_id_is_local_idx (created,id,is_local); + +-- 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); |