diff options
author | Erik Johnston <erik@matrix.org> | 2016-05-04 15:19:12 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-05-04 15:19:12 +0100 |
commit | 8e6a163f2762b3f62ae9b350c5050bc2318ec268 (patch) | |
tree | aa7bc8a71f2ed9795bc65ce57d048a4ccc0be051 /synapse/storage/__init__.py | |
parent | Move event_id to path (diff) | |
download | synapse-8e6a163f2762b3f62ae9b350c5050bc2318ec268.tar.xz |
Add timestamp and auto incrementing ID
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 045ae6c03f..7122b0cbb1 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -114,6 +114,7 @@ class DataStore(RoomMemberStore, RoomStore, self._state_groups_id_gen = StreamIdGenerator(db_conn, "state_groups", "id") self._access_tokens_id_gen = IdGenerator(db_conn, "access_tokens", "id") self._refresh_tokens_id_gen = IdGenerator(db_conn, "refresh_tokens", "id") + self._event_reports_id_gen = IdGenerator(db_conn, "event_reports", "id") self._push_rule_id_gen = IdGenerator(db_conn, "push_rules", "id") self._push_rules_enable_id_gen = IdGenerator(db_conn, "push_rules_enable", "id") self._push_rules_stream_id_gen = ChainedIdGenerator( |