Remove old tables after schema version bump (#9055)

These tables are unused, and can be dropped now the schema version has been bumped.
This commit is contained in:
Erik Johnston 2021-01-11 13:58:19 +00:00 committed by GitHub
parent 63f4990298
commit 4e04435bda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 37 additions and 59 deletions

View file

@ -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__))