summary refs log tree commit diff
path: root/synapse/storage/prepare_database.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2020-06-11 17:58:26 +0100
committerBrendan Abolivier <babolivier@matrix.org>2020-06-11 17:58:26 +0100
commitce74a6685d2fa57e9bbb54d0826344ee48ee7f57 (patch)
tree9f247f89c9f33004698fca08ab6368a75c035e66 /synapse/storage/prepare_database.py
parentActually act on mark_unread (diff)
downloadsynapse-ce74a6685d2fa57e9bbb54d0826344ee48ee7f57.tar.xz
Save the count of unread messages to event_push_summary
Diffstat (limited to 'synapse/storage/prepare_database.py')
-rw-r--r--synapse/storage/prepare_database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py
index 9cc3b51fe6..bec8da7f62 100644
--- a/synapse/storage/prepare_database.py
+++ b/synapse/storage/prepare_database.py
@@ -34,7 +34,7 @@ logger = logging.getLogger(__name__)
 # XXX: If you're about to bump this to 59 (or higher) please create an update
 # that drops the unused `cache_invalidation_stream` table, as per #7436!
 # XXX: Also add an update to drop `account_data_max_stream_id` as per #7656!
-SCHEMA_VERSION = 58
+SCHEMA_VERSION = 59
 
 dir_path = os.path.abspath(os.path.dirname(__file__))