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

Fix schema update for account validity #5268

Merged
merged 2 commits into from
May 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5268.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix schema update for account validity.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
* limitations under the License.
*/

-- We previously changed the schema for this table without renaming the file, which means
-- that some databases might still be using the old schema. This ensures Synapse uses the
-- right schema for the table.
DROP TABLE IF EXISTS account_validity;

-- Track what users are in public rooms.
Expand Down