Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Set the min schema version to 72.
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jul 12, 2022
1 parent 94f557d commit f048e38
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions synapse/storage/schema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
# The groups tables are no longer accessible, so synapses with SCHEMA_VERSION < 72
# could break.
72
)
"""Limit on how far the synapse codebase can be rolled back without breaking db compat
Expand Down

0 comments on commit f048e38

Please sign in to comment.