summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-02-16 12:17:14 +0000
committerErik Johnston <erik@matrix.org>2018-02-20 16:28:28 +0000
commitf5ac4dc2d46d329e7053259c61ad402269903ee3 (patch)
tree0fc76abf7488e57249d9f5e4dee42dab8ff1151e /synapse/storage/__init__.py
parentMerge pull request #2868 from matrix-org/erikj/refactor_media_storage (diff)
downloadsynapse-f5ac4dc2d46d329e7053259c61ad402269903ee3.tar.xz
Split ReceiptsStore
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index f8fbd02ceb..e1c4fe086e 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -104,9 +104,6 @@ class DataStore(RoomMemberStore, RoomStore,
             db_conn, "events", "stream_ordering", step=-1,
             extra_tables=[("ex_outlier_stream", "event_stream_ordering")]
         )
-        self._receipts_id_gen = StreamIdGenerator(
-            db_conn, "receipts_linearized", "stream_id"
-        )
         self._account_data_id_gen = StreamIdGenerator(
             db_conn, "account_data_max_stream_id", "stream_id"
         )