diff options
author | Erik Johnston <erik@matrix.org> | 2021-01-11 13:58:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 13:58:19 +0000 |
commit | 4e04435bda135d3441777a51aa54dbd4c3925f2b (patch) | |
tree | 48b5be04b021aad666f3c5910a37285f2c704312 /synapse/storage/prepare_database.py | |
parent | Ensure rejected events get added to some metadata tables (#9016) (diff) | |
download | synapse-4e04435bda135d3441777a51aa54dbd4c3925f2b.tar.xz |
Remove old tables after schema version bump (#9055)
These tables are unused, and can be dropped now the schema version has been bumped.
Diffstat (limited to 'synapse/storage/prepare_database.py')
-rw-r--r-- | synapse/storage/prepare_database.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py index 01efb2cabb..566ea19bae 100644 --- a/synapse/storage/prepare_database.py +++ b/synapse/storage/prepare_database.py @@ -35,9 +35,6 @@ logger = logging.getLogger(__name__) # Remember to update this number every time a change is made to database # schema files, so the users will be informed on server restarts. -# 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 dir_path = os.path.abspath(os.path.dirname(__file__)) |