]> Untitled Git - lemmy.git/blob - migrations/2020-12-04-183345_create_community_aggregates/down.sql
Speedup CI (#3852)
[lemmy.git] / migrations / 2020-12-04-183345_create_community_aggregates / down.sql
1 -- community aggregates
2 DROP TABLE community_aggregates;
3
4 DROP TRIGGER community_aggregates_community ON community;
5
6 DROP TRIGGER community_aggregates_post_count ON post;
7
8 DROP TRIGGER community_aggregates_comment_count ON comment;
9
10 DROP TRIGGER community_aggregates_subscriber_count ON community_follower;
11
12 DROP FUNCTION community_aggregates_community, community_aggregates_post_count, community_aggregates_comment_count, community_aggregates_subscriber_count;
13