summary refs log tree commit diff
path: root/synapse/storage/event_push_actions.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-01-12 14:41:26 +0000
committerMark Haines <mark.haines@matrix.org>2016-01-12 14:41:26 +0000
commita8e9e0b916b6d4e4ff739d28d9d036e8aab2fbbb (patch)
tree20804500d1aa6b06231080baabab2aed390087ab /synapse/storage/event_push_actions.py
parentRemove the PushRuleTable and PushRuleEnableTable objects (diff)
downloadsynapse-a8e9e0b916b6d4e4ff739d28d9d036e8aab2fbbb.tar.xz
Remove the PushersTable and EventPushActionsTable objects
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r--synapse/storage/event_push_actions.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py
index 5b44431ab9..d99171ee87 100644
--- a/synapse/storage/event_push_actions.py
+++ b/synapse/storage/event_push_actions.py
@@ -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"