diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-06-12 15:03:26 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2020-06-12 15:03:26 +0100 |
commit | 9549d557ea37f5851bad12cca87ab4e9b610cec8 (patch) | |
tree | f8b03e3d63fca39e89ecf4c75429eaa4ad462546 | |
parent | Use attr instead of a dict (diff) | |
download | synapse-9549d557ea37f5851bad12cca87ab4e9b610cec8.tar.xz |
Don't update the schema version
-rw-r--r-- | synapse/storage/data_stores/main/schema/delta/58/07push_summary_unread_count.sql (renamed from synapse/storage/data_stores/main/schema/delta/59/00push_summary_unread_count.sql) | 0 | ||||
-rw-r--r-- | synapse/storage/prepare_database.py | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/data_stores/main/schema/delta/59/00push_summary_unread_count.sql b/synapse/storage/data_stores/main/schema/delta/58/07push_summary_unread_count.sql index 560858d88b..560858d88b 100644 --- a/synapse/storage/data_stores/main/schema/delta/59/00push_summary_unread_count.sql +++ b/synapse/storage/data_stores/main/schema/delta/58/07push_summary_unread_count.sql diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py index bec8da7f62..9cc3b51fe6 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 = 59 +SCHEMA_VERSION = 58 dir_path = os.path.abspath(os.path.dirname(__file__)) |