summary refs log tree commit diff
path: root/synapse/storage/stats.py
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <olivier@librepush.net>2019-08-27 14:24:25 +0100
committerOlivier Wilkinson (reivilibre) <olivier@librepush.net>2019-08-27 14:24:25 +0100
commit11c4e506bd6254fcb9551729e70b7ade80b127e4 (patch)
treef3c34469618e9e4ec1d26ffb9441f6ce79f9c953 /synapse/storage/stats.py
parentRemove obsolete `OldCollectionRequired` as old collection is obsolete. (diff)
downloadsynapse-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.py2
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",