diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-27 14:24:56 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-27 14:24:56 +0100 |
commit | 62b1250629f0aef9ef74021c86ae53a2d27aad09 (patch) | |
tree | cabb63513c6a8e136bec8e764c7da38b433cfbcc | |
parent | Rename `room_state` table to `room_stats_state` (diff) | |
download | synapse-62b1250629f0aef9ef74021c86ae53a2d27aad09.tar.xz |
Update `_purge_room_txn` to take account of separated stats tables
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
-rw-r--r-- | synapse/storage/events.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 28fdba5fb2..5527dd208e 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -2271,7 +2271,8 @@ class EventsStore( "room_depth", "room_memberships", "room_stats_state", - "room_stats", + "room_stats_current", + "room_stats_historical", "room_stats_earliest_token", "rooms", "stream_ordering_to_exterm", |