summary refs log tree commit diff
path: root/synapse/storage/client_ips.py
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2018-04-05 15:37:37 +0100
committerGitHub <noreply@github.com>2018-04-05 15:37:37 +0100
commit68b0ee4e8d9b072d458b1ef6da968d10c584e4ba (patch)
treec0e3d405b2c6aa6bfb397975881b7d5d5b66ee33 /synapse/storage/client_ips.py
parentMerge pull request #3060 from matrix-org/rav/kill_event_content (diff)
parentReview comments (diff)
downloadsynapse-68b0ee4e8d9b072d458b1ef6da968d10c584e4ba.tar.xz
Merge pull request #3041 from matrix-org/r30_stats
R30 stats
Diffstat (limited to 'synapse/storage/client_ips.py')
-rw-r--r--synapse/storage/client_ips.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/storage/client_ips.py b/synapse/storage/client_ips.py
index a03d1d6104..7b44dae0fc 100644
--- a/synapse/storage/client_ips.py
+++ b/synapse/storage/client_ips.py
@@ -48,6 +48,13 @@ class ClientIpStore(background_updates.BackgroundUpdateStore):
             columns=["user_id", "device_id", "last_seen"],
         )
 
+        self.register_background_index_update(
+            "user_ips_last_seen_index",
+            index_name="user_ips_last_seen",
+            table="user_ips",
+            columns=["user_id", "last_seen"],
+        )
+
         # (user_id, access_token, ip) -> (user_agent, device_id, last_seen)
         self._batch_row_update = {}