]> Untitled Git - lemmy.git/blob - migrations/2023-02-01-012747_fix_active_index/down.sql
Fixing broken SQL migration formatting. (#3800)
[lemmy.git] / migrations / 2023-02-01-012747_fix_active_index / down.sql
1 DROP INDEX idx_post_aggregates_featured_local_active, idx_post_aggregates_featured_community_active;
2
3 CREATE INDEX idx_post_aggregates_featured_local_active ON post_aggregates (featured_local DESC, hot_rank (score, newest_comment_time) DESC, newest_comment_time DESC);
4
5 CREATE INDEX idx_post_aggregates_featured_community_active ON post_aggregates (featured_community DESC, hot_rank (score, newest_comment_time) DESC, newest_comment_time DESC);
6