diff options
author | Luke Barnard <lukebarnard1@users.noreply.github.com> | 2017-10-27 11:41:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-27 11:41:13 +0100 |
commit | d8c26162a109ba6c87adf2e8882be681632fde96 (patch) | |
tree | 7bb26e561ad21ece8278bb96c13a9a90fe51016e /scripts/synapse_port_db | |
parent | Merge pull request #2586 from matrix-org/rav/frontend_proxy_auth_header (diff) | |
parent | Request is_public from database (diff) | |
download | synapse-d8c26162a109ba6c87adf2e8882be681632fde96.tar.xz |
Merge pull request #2582 from matrix-org/luke/group-is-public
Add is_public to groups table to allow for private groups
Diffstat (limited to 'scripts/synapse_port_db')
-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 a7a50e4d36..d6d8ee50cb 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -42,6 +42,7 @@ BOOLEAN_COLUMNS = { "public_room_list_stream": ["visibility"], "device_lists_outbound_pokes": ["sent"], "users_who_share_rooms": ["share_private"], + "groups": ["is_public"], } |