From 4201f9830a5bfad05fb27e380600d1fa4c1003f4 Mon Sep 17 00:00:00 2001 From: dullbananas Date: Fri, 22 Dec 2023 15:34:04 -0700 Subject: [PATCH] Create up.sql --- migrations/up.sql | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 migrations/up.sql diff --git a/migrations/up.sql b/migrations/up.sql new file mode 100644 index 000000000..73461895f --- /dev/null +++ b/migrations/up.sql @@ -0,0 +1,34 @@ +-- Drop functions and use `CASCADE` to drop the triggers that use them +DROP FUNCTION + comment_aggregates_comment, + comment_aggregates_score, + comment_removed_resolve_reports, + community_aggregates_comment_count, + community_aggregates_community, + community_aggregates_post_count, + community_aggregates_post_count_insert, + community_aggregates_subscriber_count, + person_aggregates_comment_count, + person_aggregates_comment_score, + person_aggregates_person, + person_aggregates_post_count, + person_aggregates_post_insert, + person_aggregates_post_score, + post_aggregates_comment_count, + post_aggregates_featured_community, + post_aggregates_featured_local, + post_aggregates_post, + post_aggregates_score, + post_removed_resolve_reports, + site_aggregates_comment_delete, + site_aggregates_comment_insert, + site_aggregates_community_insert, + site_aggregates_person_delete, + site_aggregates_person_insert, + site_aggregates_post_delete, + site_aggregates_post_insert, + site_aggregates_post_update, + site_aggregates_site, + was_removed_or_deleted, + was_restored_or_created CASCADE; +