Mark the shadow_banned column as boolean in synapse_port_db. (#8386)

This commit is contained in:
Patrick Cloke 2020-09-24 08:13:55 -04:00 committed by GitHub
parent 2983049a77
commit 13099ae431
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 0 deletions

Binary file not shown.

1
changelog.d/8386.bugfix Normal file
View file

@ -0,0 +1 @@
Fix a bug introduced in v1.20.0 which caused the `synapse_port_db` script to fail.

View file

@ -89,6 +89,7 @@ BOOLEAN_COLUMNS = {
"redactions": ["have_censored"],
"room_stats_state": ["is_federatable"],
"local_media_repository": ["safe_from_quarantine"],
"users": ["shadow_banned"],
}