]> Untitled Git - lemmy.git/blob - migrations/2020-12-14-020038_create_comment_aggregates/down.sql
Sanitize html (#3708)
[lemmy.git] / migrations / 2020-12-14-020038_create_comment_aggregates / down.sql
1 -- comment aggregates
2 drop table comment_aggregates;
3 drop trigger comment_aggregates_comment on comment;
4 drop trigger comment_aggregates_score on comment_like;
5 drop function 
6   comment_aggregates_comment,
7   comment_aggregates_score;