From a05f6af17f1f6acff79890fa7181061bd0c95075 Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Tue, 12 Jul 2022 13:31:07 -0400 Subject: [PATCH] Set the min schema version to 72. --- synapse/storage/schema/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/synapse/storage/schema/__init__.py b/synapse/storage/schema/__init__.py index dc237e3032f8..91f705ec1d73 100644 --- a/synapse/storage/schema/__init__.py +++ b/synapse/storage/schema/__init__.py @@ -74,13 +74,14 @@ Changes in SCHEMA_VERSION = 72: - event_edges.(room_id, is_state) are no longer written to. + - Tables related to groups are dropped. """ SCHEMA_COMPAT_VERSION = ( # We no longer maintain `event_edges.room_id`, so synapses with SCHEMA_VERSION < 71 # will break. - 71 + 72 ) """Limit on how far the synapse codebase can be rolled back without breaking db compat