diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-01-13 13:45:39 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-01-13 13:45:39 +0100 |
commit | 37716d55ed78bddb7054b4262275dd5111df6c5c (patch) | |
tree | 879daa5a1d430dadc74df56bbf1c97136381b59f /synapse/storage/event_push_actions.py | |
parent | Merge pull request #483 from matrix-org/erikj/bulk_get_push_rules (diff) | |
parent | Merge remote-tracking branch 'origin/erikj/bulk_get_push_rules' into markjh/t... (diff) | |
download | synapse-37716d55ed78bddb7054b4262275dd5111df6c5c.tar.xz |
Merge pull request #482 from matrix-org/markjh/table_name
Finish removing the .*Table objects from the storage layer.
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r-- | synapse/storage/event_push_actions.py | 6 |
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" |