You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemmy/migrations/2023-07-19-163511_comment_s.../down.sql

7 lines
261 B
SQL

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);