Files
MyClub/database/migrations/20260120120001_add_comment_reaction_indexes.up.sql
T
Tomas Dvorak dfc079288f hot fix #1
2026-01-26 08:13:18 +01:00

5 lines
287 B
SQL

-- Add indexes for comment_reactions table (separate from constraints)
CREATE INDEX idx_comment_reactions_comment ON comment_reactions(comment_id);
CREATE INDEX idx_comment_reactions_user ON comment_reactions(user_id);
CREATE INDEX idx_comment_reactions_type ON comment_reactions(type);