2020-12-10 20:53:49 +00:00
|
|
|
-- 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;
|
2021-01-07 21:22:17 +00:00
|
|
|
drop trigger post_aggregates_stickied on post;
|
2020-12-10 20:53:49 +00:00
|
|
|
drop function
|
|
|
|
post_aggregates_post,
|
|
|
|
post_aggregates_comment_count,
|
2021-01-07 21:22:17 +00:00
|
|
|
post_aggregates_score,
|
|
|
|
post_aggregates_stickied;
|