diff options
author | David Baker <dbkr@matrix.org> | 2014-11-19 18:20:59 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-19 18:20:59 +0000 |
commit | 74c38797601f6d7d1a02d21fc54ceb1a54629c64 (patch) | |
tree | 153adbc5582198065f6a4b7eb3612f893afa3298 /synapse/storage/__init__.py | |
parent | Fix tests from prev commit (diff) | |
download | synapse-74c38797601f6d7d1a02d21fc54ceb1a54629c64.tar.xz |
Start creating a module to do generic notifications (just prints them to stdout currently!)
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index c36d938d96..5957f938a4 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -33,6 +33,7 @@ from .stream import StreamStore from .transactions import TransactionStore from .keys import KeyStore from .event_federation import EventFederationStore +from .pusher import PusherStore from .state import StateStore from .signatures import SignatureStore @@ -62,12 +63,13 @@ SCHEMAS = [ "state", "event_edges", "event_signatures", + "pusher" ] # 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 = 6 +SCHEMA_VERSION = 7 class _RollbackButIsFineException(Exception): @@ -81,7 +83,7 @@ class DataStore(RoomMemberStore, RoomStore, RegistrationStore, StreamStore, ProfileStore, FeedbackStore, PresenceStore, TransactionStore, DirectoryStore, KeyStore, StateStore, SignatureStore, - EventFederationStore, ): + EventFederationStore, PusherStore, ): def __init__(self, hs): super(DataStore, self).__init__(hs) |