diff options
author | Erik Johnston <erik@matrix.org> | 2015-01-06 15:42:18 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-01-06 15:42:18 +0000 |
commit | a01416cf217db5e442ff90715cbe1955b67b1efb (patch) | |
tree | 4e889a960af3ddae5ea9f90126d0f38a45d148f0 /synapse/storage/__init__.py | |
parent | Add index on transaction_id to sent_transcations (diff) | |
download | synapse-a01416cf217db5e442ff90715cbe1955b67b1efb.tar.xz |
Add delta and bump DB version
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
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): |