summaryrefslogtreecommitdiff
path: root/db/096to097.sql
blob: 38e4e958b8e888b79dcdd1f4920d692a9a32eb98 (plain)
1
2
3
4
5
6
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);