Fix SCHEMA_VERSION in __init__.py

This commit is contained in:
Jason Robinson
2026-06-29 13:01:03 +03:00
parent b0950f98df
commit bf3e1339ff
+1 -2
View File
@@ -19,7 +19,7 @@
#
#
SCHEMA_VERSION = 95 # remember to update the list below when updating
SCHEMA_VERSION = 94 # remember to update the list below when updating
"""Represents the expectations made by the codebase about the database schema
This should be incremented whenever the codebase changes its requirements on the
@@ -175,7 +175,6 @@ Changes in SCHEMA_VERSION = 93
Changes in SCHEMA_VERSION = 94
- Add `recheck` column (boolean, default true) to the `redactions` table.
- MSC4242: Add state DAG tables.
Changes in SCHEMA_VERSION = 95
- MSC4429: Track updates to user profile fields via a new stream.
"""