mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
9 lines
291 B
SQL
9 lines
291 B
SQL
-- 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;
|