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

Commit d138187

Browse files
Document changes to schema version 61 - 64 (#10917)
As pointed out by @richvdh, #10838 (comment) Retroactively summarize `61` - `64`
1 parent b10257e commit d138187

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

changelog.d/10917.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Document and summarize changes in schema version `61` - `64`.

synapse/storage/schema/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,22 @@
2727
Changes in SCHEMA_VERSION = 61:
2828
- The `user_stats_historical` and `room_stats_historical` tables are not written and
2929
are not read (previously, they were written but not read).
30+
- MSC2716: Add `insertion_events` and `insertion_event_edges` tables to keep track
31+
of insertion events in order to navigate historical chunks of messages.
32+
- MSC2716: Add `chunk_events` table to track how the chunk is labeled and
33+
determines which insertion event it points to.
34+
35+
Changes in SCHEMA_VERSION = 62:
36+
- MSC2716: Add `insertion_event_extremities` table that keeps track of which
37+
insertion events need to be backfilled.
3038
3139
Changes in SCHEMA_VERSION = 63:
3240
- The `public_room_list_stream` table is not written nor read to
3341
(previously, it was written and read to, but not for any significant purpose).
3442
https://github.com/matrix-org/synapse/pull/10565
43+
44+
Changes in SCHEMA_VERSION = 64:
45+
- MSC2716: Rename related tables and columns from "chunks" to "batches".
3546
"""
3647

3748

0 commit comments

Comments
 (0)