diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-03-02 13:38:57 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-03-02 13:38:57 +0000 |
commit | c3c01641d2d49988c59826912e4e48740ab4f32a (patch) | |
tree | 09e72463e5822a8309145c77da3bb80ab80b6b62 /synapse | |
parent | Add upgrade script (diff) | |
download | synapse-c3c01641d2d49988c59826912e4e48740ab4f32a.tar.xz |
Run deltas and bump user_version in upgrade script
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 d16e7b8fac..3753cd28d0 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -74,7 +74,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 = 13 +SCHEMA_VERSION = 14 dir_path = os.path.abspath(os.path.dirname(__file__)) |