summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-01-06 15:42:18 +0000
committerErik Johnston <erik@matrix.org>2015-01-06 15:42:18 +0000
commita01416cf217db5e442ff90715cbe1955b67b1efb (patch)
tree4e889a960af3ddae5ea9f90126d0f38a45d148f0 /synapse/storage/__init__.py
parentAdd index on transaction_id to sent_transcations (diff)
downloadsynapse-a01416cf217db5e442ff90715cbe1955b67b1efb.tar.xz
Add delta and bump DB version
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index 8d482decee..4beb951b9f 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -66,7 +66,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 = 10
+SCHEMA_VERSION = 11
 
 
 class _RollbackButIsFineException(Exception):