lemmy/migrations/2020-12-14-020038_create_comment_aggregates/down.sql

8 lines
233 B
MySQL
Raw Normal View History

2020-12-15 15:28:25 +00:00
-- 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;