lemmy/migrations/2024-11-21-195004_add_report_count/up.sql
Dessalines bc16cb8cb9 Add report_counts to post and comment aggregate tables.
- This adds a report_count and unresolved_report_count to
  the post and comment aggregate tables.
- Useful for front-ends wishing to show report links.
- Fixes #4163
2024-11-21 16:27:14 -05:00

10 lines
398 B
SQL

-- Adding report_count and unresolved_report_count
-- to the post and comment aggregate tables
ALTER TABLE post_aggregates
ADD COLUMN report_count bigint NOT NULL DEFAULT 0,
ADD COLUMN unresolved_report_count bigint NOT NULL DEFAULT 0;
ALTER TABLE comment_aggregates
ADD COLUMN report_count bigint NOT NULL DEFAULT 0,
ADD COLUMN unresolved_report_count bigint NOT NULL DEFAULT 0;