]> Untitled Git - lemmy.git/blob - migrations/2020-12-04-183345_create_community_aggregates/down.sql
ac2872d1f0ca95242804484d536823e2174b6f07
[lemmy.git] / migrations / 2020-12-04-183345_create_community_aggregates / down.sql
1 -- community aggregates
2 drop table community_aggregates;
3 drop trigger community_aggregates_post_count on post;
4 drop trigger community_aggregates_comment_count on comment;
5 drop trigger community_aggregates_subscriber_count on community_follower;
6 drop function 
7   community_aggregates_post_count,
8   community_aggregates_comment_count,
9   community_aggregates_subscriber_count;