diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-12-01 05:12:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 10:12:00 +0000 |
commit | 579c6be5f6eabcb05061730ea4d04d000e105076 (patch) | |
tree | 8c1640b4006ef49cca31698668cec1ee1779d55d /synapse/storage/schema/__init__.py | |
parent | Upgrade poetry-core range to fix issue with .so file (#16702) (diff) | |
download | synapse-579c6be5f6eabcb05061730ea4d04d000e105076.tar.xz |
Drop unused tables & unneeded access token ID for events. (#16522)
Diffstat (limited to 'synapse/storage/schema/__init__.py')
-rw-r--r-- | synapse/storage/schema/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/schema/__init__.py b/synapse/storage/schema/__init__.py index 03e5a0f55d..f87629b719 100644 --- a/synapse/storage/schema/__init__.py +++ b/synapse/storage/schema/__init__.py @@ -129,8 +129,8 @@ Changes in SCHEMA_VERSION = 83 SCHEMA_COMPAT_VERSION = ( - # The `event_txn_id_device_id` must be written to for new events. - 80 + # The event_txn_id table and tables from MSC2716 no longer exist. + 83 ) """Limit on how far the synapse codebase can be rolled back without breaking db compat |