diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-04-25 17:37:29 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-04-25 17:37:29 +0100 |
commit | 617bf40924bc8d627734eb2fb25a9f3980ede5d5 (patch) | |
tree | b81707cac2d1485f81ad59f415845198626a82fb /synapse/storage/client_ips.py | |
parent | ignore atom editor python ide files (diff) | |
download | synapse-617bf40924bc8d627734eb2fb25a9f3980ede5d5.tar.xz |
Generate user daily stats
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 = {} |