diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-08-21 13:16:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 13:16:28 +0100 |
commit | 4dab867288167881e5d89c8743b633be109bf603 (patch) | |
tree | 7f3f069ce1657e3e12e540338494c8addb1932cc /synapse/storage/events.py | |
parent | Refactor the Appservice scheduler code (#5886) (diff) | |
download | synapse-4dab867288167881e5d89c8743b633be109bf603.tar.xz |
Drop some unused tables. (#5893)
These tables are never used, so we may as well drop them.
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index ac876287fc..6fcfa4d789 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -1302,15 +1302,11 @@ class EventsStore( "event_reference_hashes", "event_search", "event_to_state_groups", - "guest_access", - "history_visibility", "local_invites", - "room_names", "state_events", "rejections", "redactions", "room_memberships", - "topics", ): txn.executemany( "DELETE FROM %s WHERE event_id = ?" % (table,), @@ -1454,10 +1450,10 @@ class EventsStore( for event, _ in events_and_contexts: if event.type == EventTypes.Name: - # Insert into the room_names and event_search tables. + # Insert into the event_search table. self._store_room_name_txn(txn, event) elif event.type == EventTypes.Topic: - # Insert into the topics table and event_search table. + # Insert into the event_search table. self._store_room_topic_txn(txn, event) elif event.type == EventTypes.Message: # Insert into the event_search table. @@ -1465,12 +1461,6 @@ class EventsStore( elif event.type == EventTypes.Redaction: # Insert into the redactions table. self._store_redaction(txn, event) - elif event.type == EventTypes.RoomHistoryVisibility: - # Insert into the event_search table. - self._store_history_visibility_txn(txn, event) - elif event.type == EventTypes.GuestAccess: - # Insert into the event_search table. - self._store_guest_access_txn(txn, event) self._handle_event_relations(txn, event) |