diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-10 11:22:30 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-10 11:22:30 +0100 |
commit | ce797ad3738afdef681bdca48e9cabe0baa7517b (patch) | |
tree | 32141c90257c8f40d110705b5a6f1d28d0f7e5bf /synapse | |
parent | Use unsigned bigint (diff) | |
download | synapse-ce797ad3738afdef681bdca48e9cabe0baa7517b.tar.xz |
Bump schema version
Diffstat (limited to 'synapse')
-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 87db382fbb..b46cafd25e 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -51,7 +51,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 = 15 +SCHEMA_VERSION = 16 dir_path = os.path.abspath(os.path.dirname(__file__)) |