diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-27 14:24:25 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-27 14:24:25 +0100 |
commit | 11c4e506bd6254fcb9551729e70b7ade80b127e4 (patch) | |
tree | f3c34469618e9e4ec1d26ffb9441f6ce79f9c953 /synapse/storage/stats.py | |
parent | Remove obsolete `OldCollectionRequired` as old collection is obsolete. (diff) | |
download | synapse-11c4e506bd6254fcb9551729e70b7ade80b127e4.tar.xz |
Rename `room_state` table to `room_stats_state`
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
Diffstat (limited to 'synapse/storage/stats.py')
-rw-r--r-- | synapse/storage/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py index 824e57bad7..fce0fb5a56 100644 --- a/synapse/storage/stats.py +++ b/synapse/storage/stats.py @@ -92,7 +92,7 @@ class StatsStore(StateDeltasStore): fields[col] = None return self._simple_upsert( - table="room_state", + table="room_stats_state", keyvalues={"room_id": room_id}, values=fields, desc="update_room_state", |