fixed comment count bug in moderation portal

This commit is contained in:
2026-04-28 15:50:58 +02:00
parent 5b77b0b524
commit 950ac25828
4 changed files with 226 additions and 47 deletions

View File

@@ -10,5 +10,5 @@ ALTER TABLE comments
-- Index for fast Status Filtering
CREATE INDEX idx_comments_status ON comments(status);
-- Sets all existing Comments to 'approved' (retroactive)
-- Approves existing Comments
UPDATE comments SET status = 'approved';