summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-06-03 17:06:47 +0100
committerBrendan Abolivier <babolivier@matrix.org>2019-06-03 17:06:47 +0100
commit83827c4922958abd930bfb6925d8a1a6a3833248 (patch)
tree65dc78568cc9664b295ee5da2a2d9f73461ed57d
parentMerge pull request #5309 from matrix-org/rav/limit_displayname_length (diff)
downloadsynapse-83827c4922958abd930bfb6925d8a1a6a3833248.tar.xz
Add account_validity's email_sent column to the list of boolean columns in synapse_port_db
Fixes #5306
-rwxr-xr-xscripts/synapse_port_db1
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"],
 }