]> Untitled Git - lemmy.git/blob - migrations/2023-07-19-163511_comment_sort_hot_rank_then_score/down.sql
Enhanced testing of comments. Validate reply notifications, mentions (#3686)
[lemmy.git] / migrations / 2023-07-19-163511_comment_sort_hot_rank_then_score / down.sql
1 drop index idx_comment_aggregates_hot, idx_comment_aggregates_score;
2
3 create index idx_comment_aggregates_hot on comment_aggregates (hot_rank desc, published desc);
4 create index idx_comment_aggregates_score on comment_aggregates (score desc, published desc);