2024-12-04 17:48:41 +00:00
|
|
|
-- Creates combined tables for
|
2024-11-27 21:02:11 +00:00
|
|
|
-- Reports: (comment, post, and private_message)
|
2024-11-26 14:27:05 +00:00
|
|
|
CREATE TABLE report_combined (
|
|
|
|
id serial PRIMARY KEY,
|
2024-11-26 21:53:01 +00:00
|
|
|
published timestamptz NOT NULL,
|
2024-12-03 17:18:13 +00:00
|
|
|
post_report_id int UNIQUE REFERENCES post_report ON UPDATE CASCADE ON DELETE CASCADE,
|
|
|
|
comment_report_id int UNIQUE REFERENCES comment_report ON UPDATE CASCADE ON DELETE CASCADE,
|
|
|
|
private_message_report_id int UNIQUE REFERENCES private_message_report ON UPDATE CASCADE ON DELETE CASCADE,
|
2024-12-02 21:23:50 +00:00
|
|
|
-- Make sure only one of the columns is not null
|
|
|
|
CHECK ((post_report_id IS NOT NULL)::integer + (comment_report_id IS NOT NULL)::integer + (private_message_report_id IS NOT NULL)::integer = 1)
|
2024-11-26 14:27:05 +00:00
|
|
|
);
|
|
|
|
|
2024-12-02 17:56:14 +00:00
|
|
|
CREATE INDEX idx_report_combined_published ON report_combined (published DESC, id DESC);
|
|
|
|
|
|
|
|
CREATE INDEX idx_report_combined_published_asc ON report_combined (reverse_timestamp_sort (published) DESC, id DESC);
|
2024-11-26 14:27:05 +00:00
|
|
|
|
2024-11-27 21:02:11 +00:00
|
|
|
-- Updating the history
|
|
|
|
INSERT INTO report_combined (published, post_report_id)
|
|
|
|
SELECT
|
|
|
|
published,
|
|
|
|
id
|
|
|
|
FROM
|
|
|
|
post_report;
|
|
|
|
|
|
|
|
INSERT INTO report_combined (published, comment_report_id)
|
|
|
|
SELECT
|
|
|
|
published,
|
|
|
|
id
|
|
|
|
FROM
|
|
|
|
comment_report;
|
|
|
|
|
|
|
|
INSERT INTO report_combined (published, private_message_report_id)
|
|
|
|
SELECT
|
|
|
|
published,
|
|
|
|
id
|
|
|
|
FROM
|
|
|
|
private_message_report;
|
|
|
|
|