diff options
author | David Robertson <davidr@element.io> | 2022-09-14 14:16:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 14:16:12 +0100 |
commit | 51a77e990b7a59e460ab22a2788ab8c3506b9a2c (patch) | |
tree | 51d0502f18a0cc2e5ff21c300ecc15951310193d /changelog.d | |
parent | Fix bug in device list caching when remote users leave rooms (#13749) (diff) | |
download | synapse-51a77e990b7a59e460ab22a2788ab8c3506b9a2c.tar.xz |
Remove incorrect migration file from `state` logical DB (#13788)
* Remove incorrect migration file from `state` logical DB The table `ex_outlier_stream` is part of the `main` logical DB; it should not have been created in the `state` logical DB. We remove this migration now as a tidy-up. Note: we cannot `DROP TABLE IF EXISTS ex_outlier_stream` in a new migration, because some (most) instances of Synapse host both of these logical DBs on the same DB cluster. * Changelog
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/13788.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13788.misc b/changelog.d/13788.misc new file mode 100644 index 0000000000..7263b1ac52 --- /dev/null +++ b/changelog.d/13788.misc @@ -0,0 +1 @@ +Remove an old, incorrect migration file. |