lemmy/migrations/2020-12-14-020038_create_comment_aggregates/down.sql
2020-12-15 10:28:25 -05:00

8 lines
233 B
SQL

-- comment aggregates
drop table comment_aggregates;
drop trigger comment_aggregates_comment on comment;
drop trigger comment_aggregates_score on comment_like;
drop function
comment_aggregates_comment,
comment_aggregates_score;