diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2021-08-17 14:02:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 14:02:50 +0100 |
commit | 84469bdac773ddb79cfc99f31bbac78d27450682 (patch) | |
tree | 5b3a00157ee322961de0cfd50cafefaabe0f8504 /synapse/storage/schema | |
parent | Build debs for bookworm (#10612) (diff) | |
download | synapse-84469bdac773ddb79cfc99f31bbac78d27450682.tar.xz |
Remove the unused public_room_list_stream (#10565)
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/storage/schema/__init__.py b/synapse/storage/schema/__init__.py index 7e0687e197..a5bc0ee8a5 100644 --- a/synapse/storage/schema/__init__.py +++ b/synapse/storage/schema/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -SCHEMA_VERSION = 62 +SCHEMA_VERSION = 63 """Represents the expectations made by the codebase about the database schema This should be incremented whenever the codebase changes its requirements on the @@ -25,6 +25,11 @@ for more information on how this works. Changes in SCHEMA_VERSION = 61: - The `user_stats_historical` and `room_stats_historical` tables are not written and are not read (previously, they were written but not read). + +Changes in SCHEMA_VERSION = 63: + - The `public_room_list_stream` table is not written nor read to + (previously, it was written and read to, but not for any significant purpose). + https://github.com/matrix-org/synapse/pull/10565 """ |