Remove the PushersTable and EventPushActionsTable objects

This commit is contained in:
Mark Haines 2016-01-12 14:41:26 +00:00
parent 31de2953a3
commit a8e9e0b916
2 changed files with 6 additions and 14 deletions

View file

@ -42,7 +42,7 @@ class EventPushActionsStore(SQLBaseStore):
yield self.runInteraction(
"set_actions_for_event_and_users",
self._simple_insert_many_txn,
EventPushActionsTable.table_name,
"event_push_actions",
values
)
@ -104,7 +104,3 @@ class EventPushActionsStore(SQLBaseStore):
"remove_push_actions_for_event_id",
f
)
class EventPushActionsTable(object):
table_name = "event_push_actions"