This commit is contained in:
Dull Bananas 2024-05-27 23:35:43 +00:00
parent 317097c9df
commit b6102dcbf2
10 changed files with 755 additions and 91 deletions

View file

@ -23,10 +23,10 @@ pub fn get_dump() -> String {
"--no-subscriptions",
"--no-table-access-method",
"--no-tablespaces",
"--exclude=table=comment_aggregates_fast",
"--exclude=table=community_aggregates_fast",
"--exclude=table=post_aggregates_fast",
"--exclude=table=user_fast",
"--exclude-table=comment_aggregates_fast",
"--exclude-table=community_aggregates_fast",
"--exclude-table=post_aggregates_fast",
"--exclude-table=user_fast",
])
.stderr(Stdio::inherit())
.output()
@ -253,10 +253,10 @@ fn remove_skipped_item_from_beginning(s: &str) -> Option<&str> {
}
// Skip old views and fast table triggers
else if let Some(after) = s.strip_prefix("CREATE VIEW ")
.or_else(|| s.strip_prefix("CREATE OR REPLACE VIEW")
.or_else(|| s.strip_prefix("CREATE MATERIALIZED VIEW"))
.or_else(|| s.strip_prefix("CREATE FUNCTION ").and_then(after_skipped_trigger_name))
.or_else(|| s.strip_prefix("CREATE TRIGGER ").and_then(after_skipped_trigger_name))
.or_else(|| s.strip_prefix("CREATE OR REPLACE VIEW "))
.or_else(|| s.strip_prefix("CREATE MATERIALIZED VIEW "))
.or_else(|| s.strip_prefix("CREATE FUNCTION public.").and_then(after_skipped_trigger_name)/*.and_then(|a| a.strip_prefix("()"))*/)
.or_else(|| s.strip_prefix("CREATE TRIGGER ").and_then(after_skipped_trigger_name)/*.and_then(|a| a.strip_prefix(' '))*/)
{
Some(after_first_occurence(after, "\n\n"))
} else {
@ -269,12 +269,13 @@ fn after_first_occurence<'a>(s: &'a str, pat: &str) -> &'a str {
}
fn after_skipped_trigger_name(s: &str) -> Option<&str> {
s.strip_prefix("refresh_comment ")
.or_else(|| s.strip_prefix("refresh_comment_like ")
.or_else(|| s.strip_prefix("refresh_community ")
.or_else(|| s.strip_prefix("refresh_community_follower ")
.or_else(|| s.strip_prefix("refresh_community_user_ban ")
.or_else(|| s.strip_prefix("refresh_post ")
.or_else(|| s.strip_prefix("refresh_post_like ")
.or_else(|| s.strip_prefix("refresh_user ")
s.strip_prefix("refresh_comment")
.or_else(|| s.strip_prefix("refresh_comment_like"))
.or_else(|| s.strip_prefix("refresh_community"))
.or_else(|| s.strip_prefix("refresh_community_follower"))
.or_else(|| s.strip_prefix("refresh_community_user_ban"))
.or_else(|| s.strip_prefix("refresh_post"))
.or_else(|| s.strip_prefix("refresh_post_like"))
.or_else(|| s.strip_prefix("refresh_private_message"))
.or_else(|| s.strip_prefix("refresh_user"))
}

View file

@ -1,16 +1,16 @@
DROP VIEW mod_remove_post_view;
DROP VIEW IF EXISTS mod_remove_post_view;
DROP VIEW mod_lock_post_view;
DROP VIEW IF EXISTS mod_lock_post_view;
DROP VIEW mod_remove_comment_view;
DROP VIEW IF EXISTS mod_remove_comment_view;
DROP VIEW mod_remove_community_view;
DROP VIEW IF EXISTS mod_remove_community_view;
DROP VIEW mod_ban_from_community_view;
DROP VIEW IF EXISTS mod_ban_from_community_view;
DROP VIEW mod_ban_view;
DROP VIEW IF EXISTS mod_ban_view;
DROP VIEW mod_add_community_view;
DROP VIEW IF EXISTS mod_add_community_view;
DROP VIEW mod_add_view;
DROP VIEW IF EXISTS mod_add_view;

View file

@ -1,39 +1,39 @@
-- functions and triggers
DROP TRIGGER refresh_user ON user_;
DROP TRIGGER IF EXISTS refresh_user ON user_;
DROP FUNCTION refresh_user ();
DROP FUNCTION IF EXISTS refresh_user ();
DROP TRIGGER refresh_post ON post;
DROP TRIGGER IF EXISTS refresh_post ON post;
DROP FUNCTION refresh_post ();
DROP FUNCTION IF EXISTS refresh_post ();
DROP TRIGGER refresh_post_like ON post_like;
DROP TRIGGER IF EXISTS refresh_post_like ON post_like;
DROP FUNCTION refresh_post_like ();
DROP FUNCTION IF EXISTS refresh_post_like ();
DROP TRIGGER refresh_community ON community;
DROP TRIGGER IF EXISTS refresh_community ON community;
DROP FUNCTION refresh_community ();
DROP FUNCTION IF EXISTS refresh_community ();
DROP TRIGGER refresh_community_follower ON community_follower;
DROP TRIGGER IF EXISTS refresh_community_follower ON community_follower;
DROP FUNCTION refresh_community_follower ();
DROP FUNCTION IF EXISTS refresh_community_follower ();
DROP TRIGGER refresh_community_user_ban ON community_user_ban;
DROP TRIGGER IF EXISTS refresh_community_user_ban ON community_user_ban;
DROP FUNCTION refresh_community_user_ban ();
DROP FUNCTION IF EXISTS refresh_community_user_ban ();
DROP TRIGGER refresh_comment ON comment;
DROP TRIGGER IF EXISTS refresh_comment ON comment;
DROP FUNCTION refresh_comment ();
DROP FUNCTION IF EXISTS refresh_comment ();
DROP TRIGGER refresh_comment_like ON comment_like;
DROP TRIGGER IF EXISTS refresh_comment_like ON comment_like;
DROP FUNCTION refresh_comment_like ();
DROP FUNCTION IF EXISTS refresh_comment_like ();
-- post
-- Recreate the view
DROP VIEW post_view;
DROP VIEW IF EXISTS post_view;
CREATE VIEW post_view AS
with all_post AS (
@ -167,16 +167,16 @@ FROM
FROM
all_post ap;
DROP VIEW post_mview;
DROP VIEW IF EXISTS post_mview;
DROP MATERIALIZED VIEW post_aggregates_mview;
DROP VIEW post_aggregates_view;
DROP VIEW IF EXISTS post_aggregates_view;
-- user
DROP MATERIALIZED VIEW user_mview;
DROP VIEW user_view;
DROP VIEW IF EXISTS user_view;
CREATE VIEW user_view AS
SELECT
@ -226,13 +226,13 @@ FROM
user_ u;
-- community
DROP VIEW community_mview;
DROP VIEW IF EXISTS community_mview;
DROP MATERIALIZED VIEW community_aggregates_mview;
DROP VIEW community_view;
DROP VIEW IF EXISTS community_view;
DROP VIEW community_aggregates_view;
DROP VIEW IF EXISTS 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 reply_view;
DROP VIEW IF EXISTS reply_view;
DROP VIEW user_mention_view;
DROP VIEW IF EXISTS user_mention_view;
DROP VIEW comment_view;
DROP VIEW IF EXISTS comment_view;
DROP VIEW comment_mview;
DROP VIEW IF EXISTS comment_mview;
DROP MATERIALIZED VIEW comment_aggregates_mview;
DROP VIEW comment_aggregates_view;
DROP VIEW IF EXISTS comment_aggregates_view;
CREATE VIEW comment_view AS
with all_comment AS (

View file

@ -1,19 +1,19 @@
-- Drop the dependent views
DROP VIEW post_view;
DROP VIEW IF EXISTS post_view;
DROP VIEW post_mview;
DROP VIEW IF EXISTS post_mview;
DROP MATERIALIZED VIEW post_aggregates_mview;
DROP MATERIALIZED VIEW IF EXISTS post_aggregates_mview;
DROP VIEW post_aggregates_view;
DROP VIEW IF EXISTS post_aggregates_view;
DROP VIEW mod_remove_post_view;
DROP VIEW IF EXISTS mod_remove_post_view;
DROP VIEW mod_sticky_post_view;
DROP VIEW IF EXISTS mod_sticky_post_view;
DROP VIEW mod_lock_post_view;
DROP VIEW IF EXISTS mod_lock_post_view;
DROP VIEW mod_remove_comment_view;
DROP VIEW IF EXISTS mod_remove_comment_view;
ALTER TABLE post
ALTER COLUMN name TYPE varchar(100);

View file

@ -1,5 +1,11 @@
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,
@ -15,3 +21,125 @@ 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;

View file

@ -1,3 +1,15 @@
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;
@ -6,3 +18,526 @@ 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;

View file

@ -57,7 +57,7 @@ BEGIN
END
$$;
DROP TRIGGER refresh_user ON user_;
DROP TRIGGER IF EXISTS 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 refresh_community ON community;
DROP TRIGGER IF EXISTS 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 refresh_post ON post;
DROP TRIGGER IF EXISTS refresh_post ON post;
CREATE TRIGGER refresh_post
AFTER INSERT OR UPDATE OR DELETE OR TRUNCATE ON post

View file

@ -1,47 +1,47 @@
-- Drops first
DROP VIEW site_view;
DROP VIEW IF EXISTS site_view;
DROP TABLE user_fast;
DROP TABLE IF EXISTS user_fast;
DROP VIEW user_view;
DROP VIEW IF EXISTS user_view;
DROP VIEW post_fast_view;
DROP VIEW IF EXISTS post_fast_view;
DROP TABLE post_aggregates_fast;
DROP TABLE IF EXISTS post_aggregates_fast;
DROP VIEW post_view;
DROP VIEW IF EXISTS post_view;
DROP VIEW post_aggregates_view;
DROP VIEW IF EXISTS post_aggregates_view;
DROP VIEW community_moderator_view;
DROP VIEW IF EXISTS community_moderator_view;
DROP VIEW community_follower_view;
DROP VIEW IF EXISTS community_follower_view;
DROP VIEW community_user_ban_view;
DROP VIEW IF EXISTS community_user_ban_view;
DROP VIEW community_view;
DROP VIEW IF EXISTS community_view;
DROP VIEW community_aggregates_view;
DROP VIEW IF EXISTS community_aggregates_view;
DROP VIEW community_fast_view;
DROP VIEW IF EXISTS community_fast_view;
DROP TABLE community_aggregates_fast;
DROP TABLE IF EXISTS community_aggregates_fast;
DROP VIEW private_message_view;
DROP VIEW IF EXISTS private_message_view;
DROP VIEW user_mention_view;
DROP VIEW IF EXISTS user_mention_view;
DROP VIEW reply_fast_view;
DROP VIEW IF EXISTS reply_fast_view;
DROP VIEW comment_fast_view;
DROP VIEW IF EXISTS comment_fast_view;
DROP VIEW comment_view;
DROP VIEW IF EXISTS comment_view;
DROP VIEW user_mention_fast_view;
DROP VIEW IF EXISTS user_mention_fast_view;
DROP TABLE comment_aggregates_fast;
DROP TABLE IF EXISTS comment_aggregates_fast;
DROP VIEW comment_aggregates_view;
DROP VIEW IF EXISTS comment_aggregates_view;
ALTER TABLE site
DROP COLUMN icon,

View file

@ -1,11 +1,11 @@
-- Drop first
DROP VIEW community_view;
DROP VIEW IF EXISTS community_view;
DROP VIEW community_aggregates_view;
DROP VIEW IF EXISTS community_aggregates_view;
DROP VIEW community_fast_view;
DROP VIEW IF EXISTS community_fast_view;
DROP TABLE community_aggregates_fast;
DROP TABLE IF EXISTS community_aggregates_fast;
CREATE VIEW community_aggregates_view AS
SELECT

View file

@ -1,6 +1,6 @@
DROP VIEW comment_report_view;
DROP VIEW IF EXISTS comment_report_view;
DROP VIEW post_report_view;
DROP VIEW IF EXISTS post_report_view;
DROP TABLE comment_report;