]> Untitled Git - lemmy.git/blob - migrations/2020-12-10-152350_create_post_aggregates/down.sql
Starting to add post_view.
[lemmy.git] / migrations / 2020-12-10-152350_create_post_aggregates / down.sql
1 -- post aggregates
2 drop table post_aggregates;
3 drop trigger post_aggregates_post on post;
4 drop trigger post_aggregates_comment_count on comment;
5 drop trigger post_aggregates_score on post_like;
6 drop function 
7   post_aggregates_post,
8   post_aggregates_comment_count,
9   post_aggregates_score;