Add index to device_lists_stream

This commit is contained in:
Erik Johnston 2017-03-01 15:56:30 +00:00
parent 3365117151
commit d766343668
3 changed files with 28 additions and 4 deletions

View file

@ -33,6 +33,13 @@ class DeviceStore(SQLBaseStore):
self._prune_old_outbound_device_pokes, 60 * 60 * 1000
)
self.register_background_index_update(
"device_inbox_stream_index",
index_name="device_inbox_stream_id_user_id",
table="device_inbox",
columns=["stream_id", "user_id"],
)
@defer.inlineCallbacks
def store_device(self, user_id, device_id,
initial_device_display_name):