diff options
author | Erik Johnston <erik@matrix.org> | 2022-04-12 16:50:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 16:50:40 +0100 |
commit | aa2811026402394b4013033f075d8f509cdc1257 (patch) | |
tree | f635e1a630735ed5e875be51c1a279f1d1bd7b2b /synapse/storage/schema | |
parent | Remove the unstable event field for `/send_join` per MSC3083. (#12395) (diff) | |
download | synapse-aa2811026402394b4013033f075d8f509cdc1257.tar.xz |
Process device list updates asynchronously (#12365)
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/storage/schema/__init__.py b/synapse/storage/schema/__init__.py index 151f2aa9bb..871d4ace12 100644 --- a/synapse/storage/schema/__init__.py +++ b/synapse/storage/schema/__init__.py @@ -66,9 +66,9 @@ Changes in SCHEMA_VERSION = 69: SCHEMA_COMPAT_VERSION = ( - # we now have `state_key` columns in both `events` and `state_events`, so - # now incompatible with synapses wth SCHEMA_VERSION < 66. - 66 + # We now assume that `device_lists_changes_in_room` has been filled out for + # recent device_list_updates. + 69 ) """Limit on how far the synapse codebase can be rolled back without breaking db compat |