summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-09-01 20:34:07 +0100
committerErik Johnston <erik@matrix.org>2014-09-01 20:34:07 +0100
commitbcfaaf7da6cdb4ea656d29e14bd012426c1a9e43 (patch)
tree03a93d6eb165d123d9426d3e34f374a9db2bab5d /synapse
parentMerge branch 'room_config' into develop (diff)
downloadsynapse-bcfaaf7da6cdb4ea656d29e14bd012426c1a9e43.tar.xz
That was a breaking db change. You need to recreate the databases. (In reality, it's enough to just run the im.sql through your db and change the schema version)
Diffstat (limited to 'synapse')
-rwxr-xr-xsynapse/app/homeserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index 44830e1325..cbbf600f2e 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -56,7 +56,7 @@ SCHEMAS = [
 
 # Remember to update this number every time an incompatible change is made to
 # database schema files, so the users will be informed on server restarts.
-SCHEMA_VERSION = 1
+SCHEMA_VERSION = 2
 
 
 class SynapseHomeServer(HomeServer):