mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
10 lines
291 B
MySQL
10 lines
291 B
MySQL
|
-- post aggregates
|
||
|
drop table post_aggregates;
|
||
|
drop trigger post_aggregates_post on post;
|
||
|
drop trigger post_aggregates_comment_count on comment;
|
||
|
drop trigger post_aggregates_score on post_like;
|
||
|
drop function
|
||
|
post_aggregates_post,
|
||
|
post_aggregates_comment_count,
|
||
|
post_aggregates_score;
|