Add user_ips last seen index

This commit is contained in:
Neil Johnson 2018-03-28 12:03:13 +01:00
parent 0f890f477e
commit 788e69098c
2 changed files with 24 additions and 0 deletions

View file

@ -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 = {}