summary refs log tree commit diff
path: root/synapse/storage/prepare_database.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-04-03 13:17:30 +0100
committerGitHub <noreply@github.com>2020-04-03 13:17:30 +0100
commitfd4c975b5bffb4eacf7fa07a4d6391fa1d3376c4 (patch)
tree758163e4bcdb4a6aa506c9e2ac303e8794a067a5 /synapse/storage/prepare_database.py
parentRemove some `run_in_background` calls in replication code (#7203) (diff)
parentUpdate docstring per review comments (diff)
downloadsynapse-fd4c975b5bffb4eacf7fa07a4d6391fa1d3376c4.tar.xz
Merge pull request #7190 from matrix-org/rav/one_bg_update_at_a_time
Only run one background update at a time
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 6cb7d4b922..1712932f31 100644
--- a/synapse/storage/prepare_database.py
+++ b/synapse/storage/prepare_database.py
@@ -29,7 +29,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 = 57
+SCHEMA_VERSION = 58
 
 dir_path = os.path.abspath(os.path.dirname(__file__))