diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-06-03 17:06:47 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-06-03 17:06:47 +0100 |
commit | 83827c4922958abd930bfb6925d8a1a6a3833248 (patch) | |
tree | 65dc78568cc9664b295ee5da2a2d9f73461ed57d /scripts | |
parent | Merge pull request #5309 from matrix-org/rav/limit_displayname_length (diff) | |
download | synapse-83827c4922958abd930bfb6925d8a1a6a3833248.tar.xz |
Add account_validity's email_sent column to the list of boolean columns in synapse_port_db
Fixes #5306
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 41be9c9220..b6ba19c776 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -54,6 +54,7 @@ BOOLEAN_COLUMNS = { "group_roles": ["is_public"], "local_group_membership": ["is_publicised", "is_admin"], "e2e_room_keys": ["is_verified"], + "account_validity": ["email_sent"], } |