lemmy/migrations/2023-07-19-163511_comment_s.../down.sql

5 lines
259 B
MySQL
Raw Normal View History

drop index idx_comment_aggregates_hot, idx_comment_aggregates_score;
create index idx_comment_aggregates_hot on comment_aggregates (hot_rank desc, published desc);
create index idx_comment_aggregates_score on comment_aggregates (score desc, published desc);