diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-09-24 08:13:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-24 08:13:55 -0400 |
commit | 13099ae4311436b82ae47ca252cac1fa7fa58cc6 (patch) | |
tree | 00d70f048b35b46fd56243b696ffe62c4867e0d8 /scripts | |
parent | Factor out `_send_dummy_event_for_room` (#8370) (diff) | |
download | synapse-13099ae4311436b82ae47ca252cac1fa7fa58cc6.tar.xz |
Mark the shadow_banned column as boolean in synapse_port_db. (#8386)
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/synapse_port_db | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index a34bdf1830..ecca8b6e8f 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -89,6 +89,7 @@ BOOLEAN_COLUMNS = { "redactions": ["have_censored"], "room_stats_state": ["is_federatable"], "local_media_repository": ["safe_from_quarantine"], + "users": ["shadow_banned"], } |