diff options
author | Neil Johnson <neil@matrix.org> | 2018-05-16 10:09:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-16 10:09:24 +0000 |
commit | dc8930ea9ec0b34ada0e275b31c7e61eb12137e1 (patch) | |
tree | 4372d63f3b40c27f3700e552b01f69cfa95364d6 /synapse/storage/client_ips.py | |
parent | Merge pull request #3213 from matrix-org/rav/consent_handler (diff) | |
parent | remove empty line (diff) | |
download | synapse-dc8930ea9ec0b34ada0e275b31c7e61eb12137e1.tar.xz |
Merge pull request #3163 from matrix-org/cohort_analytics
user visit data
Diffstat (limited to 'synapse/storage/client_ips.py')
-rw-r--r-- | synapse/storage/client_ips.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/synapse/storage/client_ips.py b/synapse/storage/client_ips.py index 7b44dae0fc..ba46907737 100644 --- a/synapse/storage/client_ips.py +++ b/synapse/storage/client_ips.py @@ -55,6 +55,13 @@ class ClientIpStore(background_updates.BackgroundUpdateStore): columns=["user_id", "last_seen"], ) + self.register_background_index_update( + "user_ips_last_seen_only_index", + index_name="user_ips_last_seen_only", + table="user_ips", + columns=["last_seen"], + ) + # (user_id, access_token, ip) -> (user_agent, device_id, last_seen) self._batch_row_update = {} |