mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 11:16:07 -04:00
push_rules table expects an 'id' field
This commit is contained in:
parent
2640d6718d
commit
cd525c0f5a
2 changed files with 13 additions and 13 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue