2020-12-03 15:18:17 +00:00
|
|
|
-- User aggregates
|
2023-08-02 16:44:51 +00:00
|
|
|
DROP TABLE user_aggregates;
|
|
|
|
|
|
|
|
DROP TRIGGER user_aggregates_user ON user_;
|
|
|
|
|
|
|
|
DROP TRIGGER user_aggregates_post_count ON post;
|
|
|
|
|
|
|
|
DROP TRIGGER user_aggregates_post_score ON post_like;
|
|
|
|
|
|
|
|
DROP TRIGGER user_aggregates_comment_count ON comment;
|
|
|
|
|
|
|
|
DROP TRIGGER user_aggregates_comment_score ON comment_like;
|
|
|
|
|
|
|
|
DROP FUNCTION user_aggregates_user, user_aggregates_post_count, user_aggregates_post_score, user_aggregates_comment_count, user_aggregates_comment_score;
|
|
|
|
|