diff options
author | Erik Johnston <erik@matrix.org> | 2019-01-23 11:11:52 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-01-23 11:30:01 +0000 |
commit | c5a296b10c53aa523facf16c3a4c918f93b8188c (patch) | |
tree | d17212410a737d80859c95ba2aea433ec32bf571 /synapse/storage/schema | |
parent | Merge pull request #4434 from matrix-org/erikj/fix_user_ips_dedup (diff) | |
download | synapse-c5a296b10c53aa523facf16c3a4c918f93b8188c.tar.xz |
Add support for persisting event format versions
Currently we only have the one event format version defined, but this adds the necessary infrastructure to persist and fetch the format versions alongside the events. We specify the format version rather than the room version as: 1. We don't necessarily know the room version, existing events may be either v1 or v2. 2. We'd need to be careful to prevent/handle correctly if different events in the same room reported to be of different versions, which sounds annoying.
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/delta/53/event_format_version.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/synapse/storage/schema/delta/53/event_format_version.sql b/synapse/storage/schema/delta/53/event_format_version.sql new file mode 100644 index 0000000000..1d977c2834 --- /dev/null +++ b/synapse/storage/schema/delta/53/event_format_version.sql @@ -0,0 +1,16 @@ +/* Copyright 2019 New Vector Ltd + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +ALTER TABLE event_json ADD COLUMN format_version INTEGER; |