Compare commits

...

2 commits

Author SHA1 Message Date
Andrew Morgan 13e80df4e3 changelog 2021-11-11 10:27:09 +00:00
Andrew Morgan 7c9e1940ed Move 'remove deleted devices' migration to latest schema version
This migration file was included as part of an old PR, and at the time of the PR's creation,
the latest schema version was 64. When the PR was merged, the latest version was 65, however
the migration was not moved. This meant that Synapse's on schema version 65 would not run
the migration after updating.

Move the migration file to the latest schema, 65. It is OK if this SQL runs twice, as it
simply kicks off a background table cleanup process.
2021-11-11 10:21:17 +00:00
2 changed files with 1 additions and 0 deletions

1
changelog.d/11304.misc Normal file
View file

@ -0,0 +1 @@
Fix an issue which prevented the 'remove deleted devices from device_inbox column' background process from running when updating from a recent Synapse version.