diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-09-28 15:25:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 15:25:36 +0100 |
commit | 8aaa4b7b5df5e851a5f3dd74cd3062c9f94f0066 (patch) | |
tree | fcf90205acbd1920ee27eb45ae2f05ac71086790 /synapse/storage/schema | |
parent | Inline `_check_event_auth` for outliers (#10926) (diff) | |
download | synapse-8aaa4b7b5df5e851a5f3dd74cd3062c9f94f0066.tar.xz |
Drop backwards-compatibility support for "outlier" (#10903)
Before Synapse 1.31 (#9411), we relied on `outlier` being stored in the `internal_metadata` column. We can now assume nobody will roll back their deployment that far and drop the legacy support.
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/__init__.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/synapse/storage/schema/__init__.py b/synapse/storage/schema/__init__.py index 573e05a482..1aee741a8b 100644 --- a/synapse/storage/schema/__init__.py +++ b/synapse/storage/schema/__init__.py @@ -12,9 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# When updating these values, please leave a short summary of the changes below. - -SCHEMA_VERSION = 64 +SCHEMA_VERSION = 64 # 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 @@ -46,7 +44,7 @@ Changes in SCHEMA_VERSION = 64: """ -SCHEMA_COMPAT_VERSION = 59 +SCHEMA_COMPAT_VERSION = 60 # 60: "outlier" not in internal_metadata. """Limit on how far the synapse codebase can be rolled back without breaking db compat This value is stored in the database, and checked on startup. If the value in the |