summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-01-25 15:30:32 +0000
committerErik Johnston <erik@matrix.org>2016-01-25 15:30:32 +0000
commit86896408b0a3c0d0c82356c8cc0bdaf3fe236b45 (patch)
tree16fc61ed09c94d5dd3bb31cbe8aceca702c441e8 /synapse
parentMerge branch 'erikj/filters' of github.com:matrix-org/synapse into develop (diff)
downloadsynapse-86896408b0a3c0d0c82356c8cc0bdaf3fe236b45.tar.xz
Add index to event_push_actions
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/schema/delta/28/event_push_actions.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/28/event_push_actions.sql b/synapse/storage/schema/delta/28/event_push_actions.sql
index bdf6ae3f24..4d519849df 100644
--- a/synapse/storage/schema/delta/28/event_push_actions.sql
+++ b/synapse/storage/schema/delta/28/event_push_actions.sql
@@ -24,3 +24,4 @@ CREATE TABLE IF NOT EXISTS event_push_actions(
 
 
 CREATE INDEX event_push_actions_room_id_event_id_user_id_profile_tag on event_push_actions(room_id, event_id, user_id, profile_tag);
+CREATE INDEX event_push_actions_room_id_user_id on event_push_actions(room_id, user_id);