lemmy/migrations/2023-07-19-163511_comment_sort_hot_rank_then_score/up.sql
Dessalines be1389420b
Adding SQL format checking via pg_format / pgFormatter (#3740)
* SQL format checking, 1.

* SQL format checking, 2.

* SQL format checking, 3.

* SQL format checking, 4.

* SQL format checking, 5.

* Running pg_format

* Getting rid of comment.

* Upping pg_format version.

* Using git ls-files for sql format check.

* Fixing sql lints.

* Addressing PR comments.
2023-08-02 12:44:51 -04:00

11 lines
492 B
SQL

-- Alter the comment_aggregates hot sort to sort by score after hot_rank.
-- Reason being, is that hot_ranks go to zero after a few days,
-- and then comments should be sorted by score, not published.
DROP INDEX idx_comment_aggregates_hot, idx_comment_aggregates_score;
CREATE INDEX idx_comment_aggregates_hot ON comment_aggregates (hot_rank DESC, score DESC);
-- Remove published from this sort, its pointless
CREATE INDEX idx_comment_aggregates_score ON comment_aggregates (score DESC);