push_rules table expects an 'id' field

This commit is contained in:
Erik Johnston 2015-05-11 10:58:36 +01:00
parent 2640d6718d
commit cd525c0f5a
2 changed files with 13 additions and 13 deletions

View file

@ -308,6 +308,7 @@ class SQLBaseStore(object):
self._state_groups_id_gen = IdGenerator("state_groups", "id", self)
self._access_tokens_id_gen = IdGenerator("access_tokens", "id", self)
self._pushers_id_gen = IdGenerator("pushers", "id", self)
self._push_rule_id_gen = IdGenerator("push_rules", "id", self)
def start_profiling(self):
self._previous_loop_ts = self._clock.time_msec()