diff --git a/migrations/2024-12-15-151642_add_index_on_person_id_read_for_read_only_post_actions/up.sql b/migrations/2024-12-15-151642_add_index_on_person_id_read_for_read_only_post_actions/up.sql index 96ea1f48c..03f9e4008 100644 --- a/migrations/2024-12-15-151642_add_index_on_person_id_read_for_read_only_post_actions/up.sql +++ b/migrations/2024-12-15-151642_add_index_on_person_id_read_for_read_only_post_actions/up.sql @@ -1,4 +1,4 @@ -CREATE INDEX idx_post_actions_on_read_read_not_null ON post_actions (person_id, read) +CREATE INDEX idx_post_actions_on_read_read_not_null ON post_actions (person_id, read, post_id) WHERE read IS NOT NULL;