mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 14:06:02 -04:00
For backwards compat, make state_groups.id have a type of int, not varchar
This commit is contained in:
parent
90bcb86957
commit
86fc9b617c
2 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ class StateStore(SQLBaseStore):
|
|||
|
||||
state_group = context.state_group
|
||||
if not state_group:
|
||||
state_group = _make_group_id(self._clock)
|
||||
state_group = self._state_groups_id_gen.get_next_txn(txn)
|
||||
self._simple_insert_txn(
|
||||
txn,
|
||||
table="state_groups",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue