diff options
author | Erik Johnston <erik@matrix.org> | 2017-05-24 14:58:13 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-05-24 15:23:34 +0100 |
commit | 6e614e9e10d35006707cc6eceafe80c13eb13948 (patch) | |
tree | 376aeff7b6c59f2c44639853f0740cce30d7a43d /synapse/storage/prepare_database.py | |
parent | Only store event_auth for state events (diff) | |
download | synapse-6e614e9e10d35006707cc6eceafe80c13eb13948.tar.xz |
Add background task to clear out old event_auth
Diffstat (limited to 'synapse/storage/prepare_database.py')
-rw-r--r-- | synapse/storage/prepare_database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py index 6e623843d5..eaba699e29 100644 --- a/synapse/storage/prepare_database.py +++ b/synapse/storage/prepare_database.py @@ -25,7 +25,7 @@ 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. -SCHEMA_VERSION = 41 +SCHEMA_VERSION = 42 dir_path = os.path.abspath(os.path.dirname(__file__)) |