From 7fcaca0cb11d4447fe6d96191684d5b3e2a9eef0 Mon Sep 17 00:00:00 2001 From: Dull Bananas Date: Mon, 18 Nov 2024 17:17:15 -0700 Subject: [PATCH] Revert changes to old migrations --- .../down.sql | 16 +- .../down.sql | 56 +- .../down.sql | 16 +- .../down.sql | 129 ----- .../down.sql | 535 ------------------ .../down.sql | 2 - .../down.sql | 6 +- .../down.sql | 2 - .../down.sql | 44 +- .../down.sql | 8 +- .../down.sql | 31 +- .../down.sql | 4 +- .../down.sql | 2 +- .../2021-02-02-153240_apub_columns/down.sql | 15 - .../down.sql | 6 - .../down.sql | 10 +- .../2021-09-20-112945_jwt-secret/down.sql | 2 - .../2022-05-20-135341_embed-url/down.sql | 4 +- .../2022-07-07-182650_comment_ltrees/up.sql | 4 - .../down.sql | 2 +- .../2022-11-20-032430_sticky_local/down.sql | 12 - .../down.sql | 2 +- .../down.sql | 2 +- .../down.sql | 2 +- .../down.sql | 3 - .../down.sql | 6 - .../down.sql | 6 - .../down.sql | 2 - .../2023-07-24-232635_trigram-index/down.sql | 2 - .../down.sql | 4 - .../2023-08-02-174444_fix-timezones/down.sql | 4 +- .../2023-08-23-182533_scaled_rank/down.sql | 15 - .../2023-09-18-141700_login-token/down.sql | 2 +- .../down.sql | 2 +- .../down.sql | 2 +- .../down.sql | 7 - 36 files changed, 92 insertions(+), 875 deletions(-) diff --git a/migrations/2019-04-11-144915_create_mod_views/down.sql b/migrations/2019-04-11-144915_create_mod_views/down.sql index 4cb7d34de..bf3b8bbf6 100644 --- a/migrations/2019-04-11-144915_create_mod_views/down.sql +++ b/migrations/2019-04-11-144915_create_mod_views/down.sql @@ -1,16 +1,16 @@ -DROP VIEW IF EXISTS mod_remove_post_view; +DROP VIEW mod_remove_post_view; -DROP VIEW IF EXISTS mod_lock_post_view; +DROP VIEW mod_lock_post_view; -DROP VIEW IF EXISTS mod_remove_comment_view; +DROP VIEW mod_remove_comment_view; -DROP VIEW IF EXISTS mod_remove_community_view; +DROP VIEW mod_remove_community_view; -DROP VIEW IF EXISTS mod_ban_from_community_view; +DROP VIEW mod_ban_from_community_view; -DROP VIEW IF EXISTS mod_ban_view; +DROP VIEW mod_ban_view; -DROP VIEW IF EXISTS mod_add_community_view; +DROP VIEW mod_add_community_view; -DROP VIEW IF EXISTS mod_add_view; +DROP VIEW mod_add_view; diff --git a/migrations/2020-01-13-025151_create_materialized_views/down.sql b/migrations/2020-01-13-025151_create_materialized_views/down.sql index 9fc5231a4..778e483cb 100644 --- a/migrations/2020-01-13-025151_create_materialized_views/down.sql +++ b/migrations/2020-01-13-025151_create_materialized_views/down.sql @@ -1,39 +1,39 @@ -- functions and triggers -DROP TRIGGER IF EXISTS refresh_user ON user_; +DROP TRIGGER refresh_user ON user_; -DROP FUNCTION IF EXISTS refresh_user (); +DROP FUNCTION refresh_user (); -DROP TRIGGER IF EXISTS refresh_post ON post; +DROP TRIGGER refresh_post ON post; -DROP FUNCTION IF EXISTS refresh_post (); +DROP FUNCTION refresh_post (); -DROP TRIGGER IF EXISTS refresh_post_like ON post_like; +DROP TRIGGER refresh_post_like ON post_like; -DROP FUNCTION IF EXISTS refresh_post_like (); +DROP FUNCTION refresh_post_like (); -DROP TRIGGER IF EXISTS refresh_community ON community; +DROP TRIGGER refresh_community ON community; -DROP FUNCTION IF EXISTS refresh_community (); +DROP FUNCTION refresh_community (); -DROP TRIGGER IF EXISTS refresh_community_follower ON community_follower; +DROP TRIGGER refresh_community_follower ON community_follower; -DROP FUNCTION IF EXISTS refresh_community_follower (); +DROP FUNCTION refresh_community_follower (); -DROP TRIGGER IF EXISTS refresh_community_user_ban ON community_user_ban; +DROP TRIGGER refresh_community_user_ban ON community_user_ban; -DROP FUNCTION IF EXISTS refresh_community_user_ban (); +DROP FUNCTION refresh_community_user_ban (); -DROP TRIGGER IF EXISTS refresh_comment ON comment; +DROP TRIGGER refresh_comment ON comment; -DROP FUNCTION IF EXISTS refresh_comment (); +DROP FUNCTION refresh_comment (); -DROP TRIGGER IF EXISTS refresh_comment_like ON comment_like; +DROP TRIGGER refresh_comment_like ON comment_like; -DROP FUNCTION IF EXISTS refresh_comment_like (); +DROP FUNCTION refresh_comment_like (); -- post -- Recreate the view -DROP VIEW IF EXISTS post_view; +DROP VIEW post_view; CREATE VIEW post_view AS with all_post AS ( @@ -167,16 +167,16 @@ FROM FROM all_post ap; -DROP VIEW IF EXISTS post_mview; +DROP VIEW post_mview; DROP MATERIALIZED VIEW post_aggregates_mview; -DROP VIEW IF EXISTS post_aggregates_view; +DROP VIEW post_aggregates_view; -- user DROP MATERIALIZED VIEW user_mview; -DROP VIEW IF EXISTS user_view; +DROP VIEW user_view; CREATE VIEW user_view AS SELECT @@ -226,13 +226,13 @@ FROM user_ u; -- community -DROP VIEW IF EXISTS community_mview; +DROP VIEW community_mview; DROP MATERIALIZED VIEW community_aggregates_mview; -DROP VIEW IF EXISTS community_view; +DROP VIEW community_view; -DROP VIEW IF EXISTS community_aggregates_view; +DROP VIEW community_aggregates_view; CREATE VIEW community_view AS with all_community AS ( @@ -314,17 +314,17 @@ FROM all_community ac; -- reply and comment view -DROP VIEW IF EXISTS reply_view; +DROP VIEW reply_view; -DROP VIEW IF EXISTS user_mention_view; +DROP VIEW user_mention_view; -DROP VIEW IF EXISTS comment_view; +DROP VIEW comment_view; -DROP VIEW IF EXISTS comment_mview; +DROP VIEW comment_mview; DROP MATERIALIZED VIEW comment_aggregates_mview; -DROP VIEW IF EXISTS comment_aggregates_view; +DROP VIEW comment_aggregates_view; CREATE VIEW comment_view AS with all_comment AS ( diff --git a/migrations/2020-02-06-165953_change_post_title_length/down.sql b/migrations/2020-02-06-165953_change_post_title_length/down.sql index 03d4a097e..19a5c37e8 100644 --- a/migrations/2020-02-06-165953_change_post_title_length/down.sql +++ b/migrations/2020-02-06-165953_change_post_title_length/down.sql @@ -1,19 +1,19 @@ -- Drop the dependent views -DROP VIEW IF EXISTS post_view; +DROP VIEW post_view; -DROP VIEW IF EXISTS post_mview; +DROP VIEW post_mview; -DROP MATERIALIZED VIEW IF EXISTS post_aggregates_mview; +DROP MATERIALIZED VIEW post_aggregates_mview; -DROP VIEW IF EXISTS post_aggregates_view; +DROP VIEW post_aggregates_view; -DROP VIEW IF EXISTS mod_remove_post_view; +DROP VIEW mod_remove_post_view; -DROP VIEW IF EXISTS mod_sticky_post_view; +DROP VIEW mod_sticky_post_view; -DROP VIEW IF EXISTS mod_lock_post_view; +DROP VIEW mod_lock_post_view; -DROP VIEW IF EXISTS mod_remove_comment_view; +DROP VIEW mod_remove_comment_view; ALTER TABLE post ALTER COLUMN name TYPE varchar(100); diff --git a/migrations/2020-03-26-192410_add_activitypub_tables/down.sql b/migrations/2020-03-26-192410_add_activitypub_tables/down.sql index 13a63141d..27963d857 100644 --- a/migrations/2020-03-26-192410_add_activitypub_tables/down.sql +++ b/migrations/2020-03-26-192410_add_activitypub_tables/down.sql @@ -1,11 +1,5 @@ DROP TABLE activity; -DROP VIEW community_view, community_mview; - -DROP MATERIALIZED VIEW community_aggregates_mview; - -DROP VIEW community_aggregates_view; - ALTER TABLE user_ DROP COLUMN actor_id, DROP COLUMN private_key, @@ -21,126 +15,3 @@ ALTER TABLE community DROP COLUMN local, DROP COLUMN last_refreshed_at; --- Views are the same as before, except `*` does not reference the dropped columns -CREATE VIEW community_aggregates_view AS -SELECT - c.*, - ( - SELECT - name - FROM - user_ u - WHERE - c.creator_id = u.id) AS creator_name, - ( - SELECT - avatar - FROM - user_ u - WHERE - c.creator_id = u.id) AS creator_avatar, - ( - SELECT - name - FROM - category ct - WHERE - c.category_id = ct.id) AS category_name, - ( - SELECT - count(*) - FROM - community_follower cf - WHERE - cf.community_id = c.id) AS number_of_subscribers, - ( - SELECT - count(*) - FROM - post p - WHERE - p.community_id = c.id) AS number_of_posts, - ( - SELECT - count(*) - FROM - comment co, - post p - WHERE - c.id = p.community_id - AND p.id = co.post_id) AS number_of_comments, - hot_rank (( - SELECT - count(*) - FROM community_follower cf - WHERE - cf.community_id = c.id), c.published) AS hot_rank -FROM - community c; - -CREATE MATERIALIZED VIEW community_aggregates_mview AS -SELECT - * -FROM - community_aggregates_view; - -CREATE UNIQUE INDEX idx_community_aggregates_mview_id ON community_aggregates_mview (id); - -CREATE VIEW community_view AS -with all_community AS ( - SELECT - ca.* - FROM - community_aggregates_view ca -) -SELECT - ac.*, - u.id AS user_id, - ( - SELECT - cf.id::boolean - FROM - community_follower cf - WHERE - u.id = cf.user_id - AND ac.id = cf.community_id) AS subscribed -FROM - user_ u - CROSS JOIN all_community ac -UNION ALL -SELECT - ac.*, - NULL AS user_id, - NULL AS subscribed -FROM - all_community ac; - -CREATE VIEW community_mview AS -with all_community AS ( - SELECT - ca.* - FROM - community_aggregates_mview ca -) -SELECT - ac.*, - u.id AS user_id, - ( - SELECT - cf.id::boolean - FROM - community_follower cf - WHERE - u.id = cf.user_id - AND ac.id = cf.community_id) AS subscribed -FROM - user_ u - CROSS JOIN all_community ac -UNION ALL -SELECT - ac.*, - NULL AS user_id, - NULL AS subscribed -FROM - all_community ac; - diff --git a/migrations/2020-04-03-194936_add_activitypub_for_posts_and_comments/down.sql b/migrations/2020-04-03-194936_add_activitypub_for_posts_and_comments/down.sql index 49b8f993a..6df4cb9d9 100644 --- a/migrations/2020-04-03-194936_add_activitypub_for_posts_and_comments/down.sql +++ b/migrations/2020-04-03-194936_add_activitypub_for_posts_and_comments/down.sql @@ -1,15 +1,3 @@ -DROP VIEW post_mview; - -DROP MATERIALIZED VIEW post_aggregates_mview; - -DROP VIEW post_view, post_aggregates_view; - -DROP VIEW user_mention_view, comment_view, user_mention_mview, reply_view, comment_mview; - -DROP MATERIALIZED VIEW comment_aggregates_mview; - -DROP VIEW comment_aggregates_view; - ALTER TABLE post DROP COLUMN ap_id, DROP COLUMN local; @@ -18,526 +6,3 @@ ALTER TABLE comment DROP COLUMN ap_id, DROP COLUMN local; --- Views are the same as before, except `*` does not reference the dropped columns -CREATE VIEW post_aggregates_view AS -SELECT - p.*, - ( - SELECT - u.banned - FROM - user_ u - WHERE - p.creator_id = u.id) AS banned, - ( - SELECT - cb.id::bool - FROM - community_user_ban cb - WHERE - p.creator_id = cb.user_id - AND p.community_id = cb.community_id) AS banned_from_community, - ( - SELECT - name - FROM - user_ - WHERE - p.creator_id = user_.id) AS creator_name, - ( - SELECT - avatar - FROM - user_ - WHERE - p.creator_id = user_.id) AS creator_avatar, - ( - SELECT - name - FROM - community - WHERE - p.community_id = community.id) AS community_name, - ( - SELECT - removed - FROM - community c - WHERE - p.community_id = c.id) AS community_removed, - ( - SELECT - deleted - FROM - community c - WHERE - p.community_id = c.id) AS community_deleted, - ( - SELECT - nsfw - FROM - community c - WHERE - p.community_id = c.id) AS community_nsfw, - ( - SELECT - count(*) - FROM - comment - WHERE - comment.post_id = p.id) AS number_of_comments, - coalesce(sum(pl.score), 0) AS score, - count( - CASE WHEN pl.score = 1 THEN - 1 - ELSE - NULL - END) AS upvotes, - count( - CASE WHEN pl.score = - 1 THEN - 1 - ELSE - NULL - END) AS downvotes, - hot_rank (coalesce(sum(pl.score), 0), ( - CASE WHEN (p.published < ('now'::timestamp - '1 month'::interval)) THEN - p.published -- Prevents necro-bumps - ELSE - greatest (c.recent_comment_time, p.published) - END)) AS hot_rank, - ( - CASE WHEN (p.published < ('now'::timestamp - '1 month'::interval)) THEN - p.published -- Prevents necro-bumps - ELSE - greatest (c.recent_comment_time, p.published) - END) AS newest_activity_time -FROM - post p - LEFT JOIN post_like pl ON p.id = pl.post_id - LEFT JOIN ( - SELECT - post_id, - max(published) AS recent_comment_time - FROM - comment - GROUP BY - 1) c ON p.id = c.post_id -GROUP BY - p.id, - c.recent_comment_time; - -CREATE VIEW post_view AS -with all_post AS ( - SELECT - pa.* - FROM - post_aggregates_view pa -) -SELECT - ap.*, - u.id AS user_id, - coalesce(pl.score, 0) AS my_vote, - ( - SELECT - cf.id::bool - FROM - community_follower cf - WHERE - u.id = cf.user_id - AND cf.community_id = ap.community_id) AS subscribed, - ( - SELECT - pr.id::bool - FROM - post_read pr - WHERE - u.id = pr.user_id - AND pr.post_id = ap.id) AS read, - ( - SELECT - ps.id::bool - FROM - post_saved ps - WHERE - u.id = ps.user_id - AND ps.post_id = ap.id) AS saved -FROM - user_ u - CROSS JOIN all_post ap - LEFT JOIN post_like pl ON u.id = pl.user_id - AND ap.id = pl.post_id - UNION ALL - SELECT - ap.*, - NULL AS user_id, - NULL AS my_vote, - NULL AS subscribed, - NULL AS read, - NULL AS saved - FROM - all_post ap; - -CREATE MATERIALIZED VIEW post_aggregates_mview AS -SELECT - * -FROM - post_aggregates_view; - -CREATE UNIQUE INDEX idx_post_aggregates_mview_id ON post_aggregates_mview (id); - -CREATE VIEW post_mview AS -with all_post AS ( - SELECT - pa.* - FROM - post_aggregates_mview pa -) -SELECT - ap.*, - u.id AS user_id, - coalesce(pl.score, 0) AS my_vote, - ( - SELECT - cf.id::bool - FROM - community_follower cf - WHERE - u.id = cf.user_id - AND cf.community_id = ap.community_id) AS subscribed, - ( - SELECT - pr.id::bool - FROM - post_read pr - WHERE - u.id = pr.user_id - AND pr.post_id = ap.id) AS read, - ( - SELECT - ps.id::bool - FROM - post_saved ps - WHERE - u.id = ps.user_id - AND ps.post_id = ap.id) AS saved -FROM - user_ u - CROSS JOIN all_post ap - LEFT JOIN post_like pl ON u.id = pl.user_id - AND ap.id = pl.post_id - UNION ALL - SELECT - ap.*, - NULL AS user_id, - NULL AS my_vote, - NULL AS subscribed, - NULL AS read, - NULL AS saved - FROM - all_post ap; - -CREATE VIEW comment_aggregates_view AS -SELECT - c.*, - ( - SELECT - community_id - FROM - post p - WHERE - p.id = c.post_id), ( - SELECT - co.name - FROM - post p, - community co - WHERE - p.id = c.post_id - AND p.community_id = co.id) AS community_name, - ( - SELECT - u.banned - FROM - user_ u - WHERE - c.creator_id = u.id) AS banned, - ( - SELECT - cb.id::bool - FROM - community_user_ban cb, - post p - WHERE - c.creator_id = cb.user_id - AND p.id = c.post_id - AND p.community_id = cb.community_id) AS banned_from_community, - ( - SELECT - name - FROM - user_ - WHERE - c.creator_id = user_.id) AS creator_name, - ( - SELECT - avatar - FROM - user_ - WHERE - c.creator_id = user_.id) AS creator_avatar, - coalesce(sum(cl.score), 0) AS score, - count( - CASE WHEN cl.score = 1 THEN - 1 - ELSE - NULL - END) AS upvotes, - count( - CASE WHEN cl.score = - 1 THEN - 1 - ELSE - NULL - END) AS downvotes, - hot_rank (coalesce(sum(cl.score), 0), c.published) AS hot_rank -FROM - comment c - LEFT JOIN comment_like cl ON c.id = cl.comment_id -GROUP BY - c.id; - -CREATE MATERIALIZED VIEW comment_aggregates_mview AS -SELECT - * -FROM - comment_aggregates_view; - -CREATE UNIQUE INDEX idx_comment_aggregates_mview_id ON comment_aggregates_mview (id); - -CREATE VIEW comment_mview AS -with all_comment AS ( - SELECT - ca.* - FROM - comment_aggregates_mview ca -) -SELECT - ac.*, - u.id AS user_id, - coalesce(cl.score, 0) AS my_vote, - ( - SELECT - cf.id::boolean - FROM - community_follower cf - WHERE - u.id = cf.user_id - AND ac.community_id = cf.community_id) AS subscribed, - ( - SELECT - cs.id::bool - FROM - comment_saved cs - WHERE - u.id = cs.user_id - AND cs.comment_id = ac.id) AS saved -FROM - user_ u - CROSS JOIN all_comment ac - LEFT JOIN comment_like cl ON u.id = cl.user_id - AND ac.id = cl.comment_id - UNION ALL - SELECT - ac.*, - NULL AS user_id, - NULL AS my_vote, - NULL AS subscribed, - NULL AS saved - FROM - all_comment ac; - -CREATE VIEW reply_view AS -with closereply AS ( - SELECT - c2.id, - c2.creator_id AS sender_id, - c.creator_id AS recipient_id - FROM - comment c - INNER JOIN comment c2 ON c.id = c2.parent_id - WHERE - c2.creator_id != c.creator_id - -- Do union where post is null - UNION - SELECT - c.id, - c.creator_id AS sender_id, - p.creator_id AS recipient_id - FROM - comment c, - post p - WHERE - c.post_id = p.id - AND c.parent_id IS NULL - AND c.creator_id != p.creator_id -) -SELECT - cv.*, - closereply.recipient_id -FROM - comment_mview cv, - closereply -WHERE - closereply.id = cv.id; - -CREATE VIEW user_mention_mview AS -with all_comment AS ( - SELECT - ca.* - FROM - comment_aggregates_mview ca -) -SELECT - ac.id, - um.id AS user_mention_id, - ac.creator_id, - ac.post_id, - ac.parent_id, - ac.content, - ac.removed, - um.read, - ac.published, - ac.updated, - ac.deleted, - ac.community_id, - ac.community_name, - ac.banned, - ac.banned_from_community, - ac.creator_name, - ac.creator_avatar, - ac.score, - ac.upvotes, - ac.downvotes, - ac.hot_rank, - u.id AS user_id, - coalesce(cl.score, 0) AS my_vote, - ( - SELECT - cs.id::bool - FROM - comment_saved cs - WHERE - u.id = cs.user_id - AND cs.comment_id = ac.id) AS saved, - um.recipient_id -FROM - user_ u - CROSS JOIN all_comment ac - LEFT JOIN comment_like cl ON u.id = cl.user_id - AND ac.id = cl.comment_id - LEFT JOIN user_mention um ON um.comment_id = ac.id -UNION ALL -SELECT - ac.id, - um.id AS user_mention_id, - ac.creator_id, - ac.post_id, - ac.parent_id, - ac.content, - ac.removed, - um.read, - ac.published, - ac.updated, - ac.deleted, - ac.community_id, - ac.community_name, - ac.banned, - ac.banned_from_community, - ac.creator_name, - ac.creator_avatar, - ac.score, - ac.upvotes, - ac.downvotes, - ac.hot_rank, - NULL AS user_id, - NULL AS my_vote, - NULL AS saved, - um.recipient_id -FROM - all_comment ac - LEFT JOIN user_mention um ON um.comment_id = ac.id; - -CREATE VIEW comment_view AS -with all_comment AS ( - SELECT - ca.* - FROM - comment_aggregates_view ca -) -SELECT - ac.*, - u.id AS user_id, - coalesce(cl.score, 0) AS my_vote, - ( - SELECT - cf.id::boolean - FROM - community_follower cf - WHERE - u.id = cf.user_id - AND ac.community_id = cf.community_id) AS subscribed, - ( - SELECT - cs.id::bool - FROM - comment_saved cs - WHERE - u.id = cs.user_id - AND cs.comment_id = ac.id) AS saved -FROM - user_ u - CROSS JOIN all_comment ac - LEFT JOIN comment_like cl ON u.id = cl.user_id - AND ac.id = cl.comment_id - UNION ALL - SELECT - ac.*, - NULL AS user_id, - NULL AS my_vote, - NULL AS subscribed, - NULL AS saved - FROM - all_comment ac; - -CREATE VIEW user_mention_view AS -SELECT - c.id, - um.id AS user_mention_id, - c.creator_id, - c.post_id, - c.parent_id, - c.content, - c.removed, - um.read, - c.published, - c.updated, - c.deleted, - c.community_id, - c.community_name, - c.banned, - c.banned_from_community, - c.creator_name, - c.creator_avatar, - c.score, - c.upvotes, - c.downvotes, - c.hot_rank, - c.user_id, - c.my_vote, - c.saved, - um.recipient_id -FROM - user_mention um, - comment_view c -WHERE - um.comment_id = c.id; - diff --git a/migrations/2020-04-07-135912_add_user_community_apub_constraints/down.sql b/migrations/2020-04-07-135912_add_user_community_apub_constraints/down.sql index 2ed050ab0..d2be7d337 100644 --- a/migrations/2020-04-07-135912_add_user_community_apub_constraints/down.sql +++ b/migrations/2020-04-07-135912_add_user_community_apub_constraints/down.sql @@ -5,8 +5,6 @@ ALTER TABLE user_ ADD COLUMN fedi_name varchar(40) NOT NULL DEFAULT 'http://fake.com'; ALTER TABLE user_ --- Default is only for existing rows - ALTER COLUMN fedi_name DROP DEFAULT, ADD CONSTRAINT user__name_fedi_name_key UNIQUE (name, fedi_name); -- Community diff --git a/migrations/2020-06-30-135809_remove_mat_views/down.sql b/migrations/2020-06-30-135809_remove_mat_views/down.sql index 97360a0db..ea82e57b4 100644 --- a/migrations/2020-06-30-135809_remove_mat_views/down.sql +++ b/migrations/2020-06-30-135809_remove_mat_views/down.sql @@ -57,7 +57,7 @@ BEGIN END $$; -DROP TRIGGER IF EXISTS refresh_user ON user_; +DROP TRIGGER refresh_user ON user_; CREATE TRIGGER refresh_user AFTER INSERT OR UPDATE OR DELETE OR TRUNCATE ON user_ @@ -125,7 +125,7 @@ FROM CREATE UNIQUE INDEX idx_user_mview_id ON user_mview (id); -- community -DROP TRIGGER IF EXISTS refresh_community ON community; +DROP TRIGGER refresh_community ON community; CREATE TRIGGER refresh_community AFTER INSERT OR UPDATE OR DELETE OR TRUNCATE ON community @@ -547,7 +547,7 @@ FROM FROM all_post ap; -DROP TRIGGER IF EXISTS refresh_post ON post; +DROP TRIGGER refresh_post ON post; CREATE TRIGGER refresh_post AFTER INSERT OR UPDATE OR DELETE OR TRUNCATE ON post diff --git a/migrations/2020-07-08-202609_add_creator_published/down.sql b/migrations/2020-07-08-202609_add_creator_published/down.sql index 034e7f7a0..fd1ca1cb4 100644 --- a/migrations/2020-07-08-202609_add_creator_published/down.sql +++ b/migrations/2020-07-08-202609_add_creator_published/down.sql @@ -493,5 +493,3 @@ SELECT FROM post_aggregates_fast pav; -CREATE INDEX idx_post_aggregates_fast_hot_rank_published ON post_aggregates_fast (hot_rank DESC, published DESC); - diff --git a/migrations/2020-08-03-000110_add_preferred_usernames_banners_and_icons/down.sql b/migrations/2020-08-03-000110_add_preferred_usernames_banners_and_icons/down.sql index 38c025f7f..cb04cdd6a 100644 --- a/migrations/2020-08-03-000110_add_preferred_usernames_banners_and_icons/down.sql +++ b/migrations/2020-08-03-000110_add_preferred_usernames_banners_and_icons/down.sql @@ -1,47 +1,47 @@ -- Drops first -DROP VIEW IF EXISTS site_view; +DROP VIEW site_view; -DROP TABLE IF EXISTS user_fast; +DROP TABLE user_fast; -DROP VIEW IF EXISTS user_view; +DROP VIEW user_view; -DROP VIEW IF EXISTS post_fast_view; +DROP VIEW post_fast_view; -DROP TABLE IF EXISTS post_aggregates_fast; +DROP TABLE post_aggregates_fast; -DROP VIEW IF EXISTS post_view; +DROP VIEW post_view; -DROP VIEW IF EXISTS post_aggregates_view; +DROP VIEW post_aggregates_view; -DROP VIEW IF EXISTS community_moderator_view; +DROP VIEW community_moderator_view; -DROP VIEW IF EXISTS community_follower_view; +DROP VIEW community_follower_view; -DROP VIEW IF EXISTS community_user_ban_view; +DROP VIEW community_user_ban_view; -DROP VIEW IF EXISTS community_view; +DROP VIEW community_view; -DROP VIEW IF EXISTS community_aggregates_view; +DROP VIEW community_aggregates_view; -DROP VIEW IF EXISTS community_fast_view; +DROP VIEW community_fast_view; -DROP TABLE IF EXISTS community_aggregates_fast; +DROP TABLE community_aggregates_fast; -DROP VIEW IF EXISTS private_message_view; +DROP VIEW private_message_view; -DROP VIEW IF EXISTS user_mention_view; +DROP VIEW user_mention_view; -DROP VIEW IF EXISTS reply_fast_view; +DROP VIEW reply_fast_view; -DROP VIEW IF EXISTS comment_fast_view; +DROP VIEW comment_fast_view; -DROP VIEW IF EXISTS comment_view; +DROP VIEW comment_view; -DROP VIEW IF EXISTS user_mention_fast_view; +DROP VIEW user_mention_fast_view; -DROP TABLE IF EXISTS comment_aggregates_fast; +DROP TABLE comment_aggregates_fast; -DROP VIEW IF EXISTS comment_aggregates_view; +DROP VIEW comment_aggregates_view; ALTER TABLE site DROP COLUMN icon, diff --git a/migrations/2020-08-06-205355_update_community_post_count/down.sql b/migrations/2020-08-06-205355_update_community_post_count/down.sql index 205b94078..984f407bc 100644 --- a/migrations/2020-08-06-205355_update_community_post_count/down.sql +++ b/migrations/2020-08-06-205355_update_community_post_count/down.sql @@ -1,11 +1,11 @@ -- Drop first -DROP VIEW IF EXISTS community_view; +DROP VIEW community_view; -DROP VIEW IF EXISTS community_aggregates_view; +DROP VIEW community_aggregates_view; -DROP VIEW IF EXISTS community_fast_view; +DROP VIEW community_fast_view; -DROP TABLE IF EXISTS community_aggregates_fast; +DROP TABLE community_aggregates_fast; CREATE VIEW community_aggregates_view AS SELECT diff --git a/migrations/2020-10-07-234221_fix_fast_triggers/down.sql b/migrations/2020-10-07-234221_fix_fast_triggers/down.sql index 7697dbc6c..5a905564a 100644 --- a/migrations/2020-10-07-234221_fix_fast_triggers/down.sql +++ b/migrations/2020-10-07-234221_fix_fast_triggers/down.sql @@ -155,8 +155,7 @@ BEGIN UPDATE post_aggregates_fast AS paf SET - hot_rank = pav.hot_rank, - hot_rank_active = pav.hot_rank_active + hot_rank = pav.hot_rank FROM post_aggregates_view AS pav WHERE @@ -221,36 +220,14 @@ BEGIN post_aggregates_view WHERE id = NEW.post_id; - -- Update the comment hot_ranks as of last week - UPDATE - comment_aggregates_fast AS caf - SET - hot_rank = cav.hot_rank, - hot_rank_active = cav.hot_rank_active - FROM - comment_aggregates_view AS cav - WHERE - caf.id = cav.id - AND (cav.published > ('now'::timestamp - '1 week'::interval)); - -- Update the post ranks + -- Force the hot rank as zero on week-older posts UPDATE post_aggregates_fast AS paf SET - hot_rank = pav.hot_rank, - hot_rank_active = pav.hot_rank_active - FROM - post_aggregates_view AS pav - WHERE - paf.id = pav.id - AND (pav.published > ('now'::timestamp - '1 week'::interval)); - -- Force the hot rank active as zero on 2 day-older posts (necro-bump) - UPDATE - post_aggregates_fast AS paf - SET - hot_rank_active = 0 + hot_rank = 0 WHERE paf.id = NEW.post_id - AND (paf.published < ('now'::timestamp - '2 days'::interval)); + AND (paf.published < ('now'::timestamp - '1 week'::interval)); -- Update community number of comments UPDATE community_aggregates_fast AS caf diff --git a/migrations/2020-10-13-212240_create_report_tables/down.sql b/migrations/2020-10-13-212240_create_report_tables/down.sql index e616c99a6..9dfdbd48e 100644 --- a/migrations/2020-10-13-212240_create_report_tables/down.sql +++ b/migrations/2020-10-13-212240_create_report_tables/down.sql @@ -1,6 +1,6 @@ -DROP VIEW IF EXISTS comment_report_view; +DROP VIEW comment_report_view; -DROP VIEW IF EXISTS post_report_view; +DROP VIEW post_report_view; DROP TABLE comment_report; diff --git a/migrations/2020-11-05-152724_activity_remove_user_id/down.sql b/migrations/2020-11-05-152724_activity_remove_user_id/down.sql index 9b3fa8f5b..580c93e0d 100644 --- a/migrations/2020-11-05-152724_activity_remove_user_id/down.sql +++ b/migrations/2020-11-05-152724_activity_remove_user_id/down.sql @@ -1,5 +1,5 @@ ALTER TABLE activity - ADD COLUMN user_id INTEGER NOT NULL REFERENCES user_ (id) ON UPDATE CASCADE ON DELETE CASCADE; + ADD COLUMN user_id INTEGER; ALTER TABLE activity DROP COLUMN sensitive; diff --git a/migrations/2021-02-02-153240_apub_columns/down.sql b/migrations/2021-02-02-153240_apub_columns/down.sql index 18d921af2..a5ff8edcf 100644 --- a/migrations/2021-02-02-153240_apub_columns/down.sql +++ b/migrations/2021-02-02-153240_apub_columns/down.sql @@ -1,5 +1,3 @@ -DROP VIEW user_alias_1, user_alias_2; - ALTER TABLE community DROP COLUMN followers_url; @@ -15,16 +13,3 @@ ALTER TABLE user_ ALTER TABLE user_ DROP COLUMN shared_inbox_url; --- Views are the same as before, except `*` does not reference the dropped columns -CREATE VIEW user_alias_1 AS -SELECT - * -FROM - user_; - -CREATE VIEW user_alias_2 AS -SELECT - * -FROM - user_; - diff --git a/migrations/2021-02-25-112959_remove-categories/down.sql b/migrations/2021-02-25-112959_remove-categories/down.sql index 6a7fe7cd1..61d8c8d57 100644 --- a/migrations/2021-02-25-112959_remove-categories/down.sql +++ b/migrations/2021-02-25-112959_remove-categories/down.sql @@ -34,9 +34,3 @@ INSERT INTO category (name) ALTER TABLE community ADD category_id int REFERENCES category ON UPDATE CASCADE ON DELETE CASCADE NOT NULL DEFAULT 1; --- Default is only for existing rows -ALTER TABLE community - ALTER COLUMN category_id DROP DEFAULT; - -CREATE INDEX idx_community_category ON community (category_id); - diff --git a/migrations/2021-03-09-171136_split_user_table_2/down.sql b/migrations/2021-03-09-171136_split_user_table_2/down.sql index 31f355e37..cba90ac49 100644 --- a/migrations/2021-03-09-171136_split_user_table_2/down.sql +++ b/migrations/2021-03-09-171136_split_user_table_2/down.sql @@ -229,7 +229,7 @@ ALTER SEQUENCE person_id_seq -- Add the columns back in ALTER TABLE user_ ADD COLUMN password_encrypted text NOT NULL DEFAULT 'changeme', - ADD COLUMN email text UNIQUE, + ADD COLUMN email text, ADD COLUMN admin boolean DEFAULT FALSE NOT NULL, ADD COLUMN show_nsfw boolean DEFAULT FALSE NOT NULL, ADD COLUMN theme character varying(20) DEFAULT 'darkly'::character varying NOT NULL, @@ -238,11 +238,7 @@ ALTER TABLE user_ ADD COLUMN lang character varying(20) DEFAULT 'browser'::character varying NOT NULL, ADD COLUMN show_avatars boolean DEFAULT TRUE NOT NULL, ADD COLUMN send_notifications_to_email boolean DEFAULT FALSE NOT NULL, - ADD COLUMN matrix_user_id text UNIQUE; - --- Default is only for existing rows -ALTER TABLE user_ - ALTER COLUMN password_encrypted DROP DEFAULT; + ADD COLUMN matrix_user_id text; -- Update the user_ table with the local_user data UPDATE @@ -264,8 +260,6 @@ FROM WHERE lu.person_id = u.id; -CREATE UNIQUE INDEX idx_user_email_lower ON user_ (lower(email)); - CREATE VIEW user_alias_1 AS SELECT * diff --git a/migrations/2021-09-20-112945_jwt-secret/down.sql b/migrations/2021-09-20-112945_jwt-secret/down.sql index a633110a9..89350d96a 100644 --- a/migrations/2021-09-20-112945_jwt-secret/down.sql +++ b/migrations/2021-09-20-112945_jwt-secret/down.sql @@ -1,4 +1,2 @@ DROP TABLE secret; -DROP EXTENSION pgcrypto; - diff --git a/migrations/2022-05-20-135341_embed-url/down.sql b/migrations/2022-05-20-135341_embed-url/down.sql index d27ed9098..4ce7051a1 100644 --- a/migrations/2022-05-20-135341_embed-url/down.sql +++ b/migrations/2022-05-20-135341_embed-url/down.sql @@ -1,6 +1,6 @@ ALTER TABLE post - DROP COLUMN embed_video_url; + DROP COLUMN embed_url; ALTER TABLE post - ADD COLUMN embed_html text; + ADD COLUMN embed_video_url text; diff --git a/migrations/2022-07-07-182650_comment_ltrees/up.sql b/migrations/2022-07-07-182650_comment_ltrees/up.sql index 73c00e439..08c0141d3 100644 --- a/migrations/2022-07-07-182650_comment_ltrees/up.sql +++ b/migrations/2022-07-07-182650_comment_ltrees/up.sql @@ -116,10 +116,6 @@ FROM WHERE c.id = ct.id; --- Without this, `DROP EXTENSION` in down.sql throws an object dependency error if up.sql and down.sql --- are run in the same database connection -DROP TABLE comment_temp; - -- Update the child counts UPDATE comment_aggregates ca diff --git a/migrations/2022-10-06-183632_move_blocklist_to_db/down.sql b/migrations/2022-10-06-183632_move_blocklist_to_db/down.sql index 91ad3fc8b..af95b8773 100644 --- a/migrations/2022-10-06-183632_move_blocklist_to_db/down.sql +++ b/migrations/2022-10-06-183632_move_blocklist_to_db/down.sql @@ -6,7 +6,7 @@ ALTER TABLE site ADD COLUMN community_creation_admin_only boolean DEFAULT FALSE NOT NULL, ADD COLUMN require_email_verification boolean DEFAULT FALSE NOT NULL, ADD COLUMN require_application boolean DEFAULT TRUE NOT NULL, - ADD COLUMN application_question text DEFAULT 'To verify that you are human, please explain why you want to create an account on this site'::text, + ADD COLUMN application_question text DEFAULT 'to verify that you are human, please explain why you want to create an account on this site'::text, ADD COLUMN private_instance boolean DEFAULT FALSE NOT NULL, ADD COLUMN default_theme text DEFAULT 'browser'::text NOT NULL, ADD COLUMN default_post_listing_type text DEFAULT 'Local'::text NOT NULL, diff --git a/migrations/2022-11-20-032430_sticky_local/down.sql b/migrations/2022-11-20-032430_sticky_local/down.sql index 0f8458ffe..767c9aa7f 100644 --- a/migrations/2022-11-20-032430_sticky_local/down.sql +++ b/migrations/2022-11-20-032430_sticky_local/down.sql @@ -65,15 +65,3 @@ CREATE TRIGGER post_aggregates_stickied WHEN (OLD.stickied IS DISTINCT FROM NEW.stickied) EXECUTE PROCEDURE post_aggregates_stickied (); -CREATE INDEX idx_post_aggregates_stickied_newest_comment_time ON post_aggregates (stickied DESC, newest_comment_time DESC); - -CREATE INDEX idx_post_aggregates_stickied_comments ON post_aggregates (stickied DESC, comments DESC); - -CREATE INDEX idx_post_aggregates_stickied_hot ON post_aggregates (stickied DESC, hot_rank (score, published) DESC, published DESC); - -CREATE INDEX idx_post_aggregates_stickied_active ON post_aggregates (stickied DESC, hot_rank (score, newest_comment_time_necro) DESC, newest_comment_time_necro DESC); - -CREATE INDEX idx_post_aggregates_stickied_score ON post_aggregates (stickied DESC, score DESC); - -CREATE INDEX idx_post_aggregates_stickied_published ON post_aggregates (stickied DESC, published DESC); - diff --git a/migrations/2023-01-17-165819_cleanup_post_aggregates_indexes/down.sql b/migrations/2023-01-17-165819_cleanup_post_aggregates_indexes/down.sql index 9d8e275c8..9064ea760 100644 --- a/migrations/2023-01-17-165819_cleanup_post_aggregates_indexes/down.sql +++ b/migrations/2023-01-17-165819_cleanup_post_aggregates_indexes/down.sql @@ -8,7 +8,7 @@ CREATE INDEX idx_post_aggregates_comments ON post_aggregates (comments DESC); CREATE INDEX idx_post_aggregates_hot ON post_aggregates (hot_rank (score, published) DESC, published DESC); -CREATE INDEX idx_post_aggregates_active ON post_aggregates (hot_rank (score, newest_comment_time_necro) DESC, newest_comment_time_necro DESC); +CREATE INDEX idx_post_aggregates_active ON post_aggregates (hot_rank (score, newest_comment_time) DESC, newest_comment_time DESC); CREATE INDEX idx_post_aggregates_score ON post_aggregates (score DESC); diff --git a/migrations/2023-02-05-102549_drop-site-federation-debug/down.sql b/migrations/2023-02-05-102549_drop-site-federation-debug/down.sql index 5550a6d2a..4e141e423 100644 --- a/migrations/2023-02-05-102549_drop-site-federation-debug/down.sql +++ b/migrations/2023-02-05-102549_drop-site-federation-debug/down.sql @@ -1,3 +1,3 @@ ALTER TABLE local_site - ADD COLUMN federation_debug boolean DEFAULT FALSE NOT NULL; + ADD COLUMN federation_debug int DEFAULT 0; diff --git a/migrations/2023-04-14-175955_add_listingtype_sorttype_enums/down.sql b/migrations/2023-04-14-175955_add_listingtype_sorttype_enums/down.sql index cdd2f573b..ceb36f538 100644 --- a/migrations/2023-04-14-175955_add_listingtype_sorttype_enums/down.sql +++ b/migrations/2023-04-14-175955_add_listingtype_sorttype_enums/down.sql @@ -117,7 +117,7 @@ ALTER TABLE local_site ALTER COLUMN default_post_listing_type TYPE text; ALTER TABLE local_site - ALTER COLUMN default_post_listing_type SET DEFAULT 'Local'; + ALTER COLUMN default_post_listing_type SET DEFAULT 1; -- Drop the types DROP TYPE listing_type_enum; diff --git a/migrations/2023-05-10-095739_force_enable_undetermined_language/down.sql b/migrations/2023-05-10-095739_force_enable_undetermined_language/down.sql index deb75def2..e69de29bb 100644 --- a/migrations/2023-05-10-095739_force_enable_undetermined_language/down.sql +++ b/migrations/2023-05-10-095739_force_enable_undetermined_language/down.sql @@ -1,3 +0,0 @@ -SELECT - 1; - diff --git a/migrations/2023-06-17-175955_add_listingtype_sorttype_hour_enums/down.sql b/migrations/2023-06-17-175955_add_listingtype_sorttype_hour_enums/down.sql index 5a3577c01..bdf20b8eb 100644 --- a/migrations/2023-06-17-175955_add_listingtype_sorttype_hour_enums/down.sql +++ b/migrations/2023-06-17-175955_add_listingtype_sorttype_hour_enums/down.sql @@ -1,6 +1,3 @@ -ALTER TABLE local_user - ALTER default_sort_type DROP DEFAULT; - -- update the default sort type UPDATE local_user @@ -32,9 +29,6 @@ ALTER TABLE local_user ALTER COLUMN default_sort_type TYPE sort_type_enum USING default_sort_type::text::sort_type_enum; -ALTER TABLE local_user - ALTER default_sort_type SET DEFAULT 'Active'; - -- drop the old enum DROP TYPE sort_type_enum__; diff --git a/migrations/2023-06-20-191145_add_listingtype_sorttype_3_6_9_months_enums/down.sql b/migrations/2023-06-20-191145_add_listingtype_sorttype_3_6_9_months_enums/down.sql index e0b4b4e9a..694b62eee 100644 --- a/migrations/2023-06-20-191145_add_listingtype_sorttype_3_6_9_months_enums/down.sql +++ b/migrations/2023-06-20-191145_add_listingtype_sorttype_3_6_9_months_enums/down.sql @@ -1,6 +1,3 @@ -ALTER TABLE local_user - ALTER default_sort_type DROP DEFAULT; - -- update the default sort type UPDATE local_user @@ -35,9 +32,6 @@ ALTER TABLE local_user ALTER COLUMN default_sort_type TYPE sort_type_enum USING default_sort_type::text::sort_type_enum; -ALTER TABLE local_user - ALTER default_sort_type SET DEFAULT 'Active'; - -- drop the old enum DROP TYPE sort_type_enum__; diff --git a/migrations/2023-07-11-084714_receive_activity_table/down.sql b/migrations/2023-07-11-084714_receive_activity_table/down.sql index 086e6a981..188b4afa4 100644 --- a/migrations/2023-07-11-084714_receive_activity_table/down.sql +++ b/migrations/2023-07-11-084714_receive_activity_table/down.sql @@ -26,5 +26,3 @@ DROP TABLE sent_activity; DROP TABLE received_activity; -CREATE UNIQUE INDEX idx_activity_ap_id ON activity (ap_id); - diff --git a/migrations/2023-07-24-232635_trigram-index/down.sql b/migrations/2023-07-24-232635_trigram-index/down.sql index f3e3d95ad..6883178f8 100644 --- a/migrations/2023-07-24-232635_trigram-index/down.sql +++ b/migrations/2023-07-24-232635_trigram-index/down.sql @@ -6,5 +6,3 @@ DROP INDEX idx_person_trigram; DROP INDEX idx_community_trigram; -DROP EXTENSION pg_trgm; - diff --git a/migrations/2023-08-01-101826_admin_flag_local_user/down.sql b/migrations/2023-08-01-101826_admin_flag_local_user/down.sql index d17637a21..8ec229be7 100644 --- a/migrations/2023-08-01-101826_admin_flag_local_user/down.sql +++ b/migrations/2023-08-01-101826_admin_flag_local_user/down.sql @@ -14,7 +14,3 @@ WHERE ALTER TABLE local_user DROP COLUMN admin; -CREATE INDEX idx_person_admin ON person (admin) -WHERE - admin; - diff --git a/migrations/2023-08-02-174444_fix-timezones/down.sql b/migrations/2023-08-02-174444_fix-timezones/down.sql index 1c9fae318..c81afa9d5 100644 --- a/migrations/2023-08-02-174444_fix-timezones/down.sql +++ b/migrations/2023-08-02-174444_fix-timezones/down.sql @@ -328,9 +328,7 @@ ALTER TABLE captcha_answer ALTER COLUMN published TYPE timestamp USING published; -DROP FUNCTION hot_rank; - -CREATE FUNCTION hot_rank (score numeric, published timestamp without time zone) +CREATE OR REPLACE FUNCTION hot_rank (score numeric, published timestamp without time zone) RETURNS integer AS $$ DECLARE diff --git a/migrations/2023-08-23-182533_scaled_rank/down.sql b/migrations/2023-08-23-182533_scaled_rank/down.sql index 0e8035cd4..afe1bfc21 100644 --- a/migrations/2023-08-23-182533_scaled_rank/down.sql +++ b/migrations/2023-08-23-182533_scaled_rank/down.sql @@ -85,18 +85,3 @@ ALTER TABLE local_user -- drop the old enum DROP TYPE sort_type_enum__; --- Remove int to float conversions that were automatically added to index filters -DROP INDEX idx_comment_aggregates_nonzero_hotrank, idx_community_aggregates_nonzero_hotrank, idx_post_aggregates_nonzero_hotrank; - -CREATE INDEX idx_community_aggregates_nonzero_hotrank ON community_aggregates (published) -WHERE - hot_rank != 0; - -CREATE INDEX idx_comment_aggregates_nonzero_hotrank ON comment_aggregates (published) -WHERE - hot_rank != 0; - -CREATE INDEX idx_post_aggregates_nonzero_hotrank ON post_aggregates (published DESC) -WHERE - hot_rank != 0 OR hot_rank_active != 0; - diff --git a/migrations/2023-09-18-141700_login-token/down.sql b/migrations/2023-09-18-141700_login-token/down.sql index 48ecd1e1e..826e05e70 100644 --- a/migrations/2023-09-18-141700_login-token/down.sql +++ b/migrations/2023-09-18-141700_login-token/down.sql @@ -1,5 +1,5 @@ DROP TABLE login_token; ALTER TABLE local_user - ADD COLUMN validator_time timestamptz NOT NULL DEFAULT now(); + ADD COLUMN validator_time timestamp NOT NULL DEFAULT now(); diff --git a/migrations/2023-10-17-181800_drop_remove_community_expires/down.sql b/migrations/2023-10-17-181800_drop_remove_community_expires/down.sql index d0e792db5..048c3d7f1 100644 --- a/migrations/2023-10-17-181800_drop_remove_community_expires/down.sql +++ b/migrations/2023-10-17-181800_drop_remove_community_expires/down.sql @@ -1,3 +1,3 @@ ALTER TABLE mod_remove_community - ADD COLUMN expires timestamptz; + ADD COLUMN expires timestamp; diff --git a/migrations/2023-10-24-030352_change_primary_keys_and_remove_some_id_columns/down.sql b/migrations/2023-10-24-030352_change_primary_keys_and_remove_some_id_columns/down.sql index bebadd999..b5078355e 100644 --- a/migrations/2023-10-24-030352_change_primary_keys_and_remove_some_id_columns/down.sql +++ b/migrations/2023-10-24-030352_change_primary_keys_and_remove_some_id_columns/down.sql @@ -148,7 +148,7 @@ ALTER TABLE post_read ALTER TABLE received_activity ADD UNIQUE (ap_id), DROP CONSTRAINT received_activity_pkey, - ADD COLUMN id bigserial PRIMARY KEY; + ADD COLUMN id serial PRIMARY KEY; CREATE INDEX idx_post_saved_person_id ON post_saved (person_id); diff --git a/migrations/2024-02-24-034523_replaceable-schema/down.sql b/migrations/2024-02-24-034523_replaceable-schema/down.sql index cbdbadb37..db8feacdf 100644 --- a/migrations/2024-02-24-034523_replaceable-schema/down.sql +++ b/migrations/2024-02-24-034523_replaceable-schema/down.sql @@ -945,13 +945,6 @@ CREATE TRIGGER site_aggregates_comment_insert WHEN ((new.local = TRUE)) EXECUTE FUNCTION site_aggregates_comment_insert (); -CREATE TRIGGER site_aggregates_community_delete - AFTER DELETE OR UPDATE OF removed, - deleted ON community - FOR EACH ROW - WHEN (OLD.local = TRUE) - EXECUTE PROCEDURE site_aggregates_community_delete (); - CREATE TRIGGER site_aggregates_community_insert AFTER INSERT OR UPDATE OF removed, deleted ON community