diff options
author | Eric <eric@pedr0.net> | 2019-02-20 23:11:21 +0100 |
---|---|---|
committer | Eric <eric@pedr0.net> | 2019-02-20 23:18:00 +0100 |
commit | 8184ae8a09426e2f0698822eafbb2bd114b9d8a5 (patch) | |
tree | 4485520fcdc7454fb3d7e4b3beca2c7ef4a15867 | |
parent | Merge pull request #4694 from matrix-org/erikj/fix_sentry_config_format (diff) | |
download | synapse-8184ae8a09426e2f0698822eafbb2bd114b9d8a5.tar.xz |
Consider e2e_room_keys.is_verified column as boolean
This column was considered as an int, crashing the whole migration process Signed-off-by: Eric <eric@pedr0.net>
-rw-r--r-- | changelog.d/4680.bugfix | 3 | ||||
-rwxr-xr-x | scripts/synapse_port_db | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/changelog.d/4680.bugfix b/changelog.d/4680.bugfix new file mode 100644 index 0000000000..4aad8ecde3 --- /dev/null +++ b/changelog.d/4680.bugfix @@ -0,0 +1,3 @@ +Fix an issue in the database migration script where the +`e2e_room_keys.is_verified` column wasn't considered as +a boolean diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index 3c7b606323..2fa01d1a18 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -53,6 +53,7 @@ BOOLEAN_COLUMNS = { "group_summary_users": ["is_public"], "group_roles": ["is_public"], "local_group_membership": ["is_publicised", "is_admin"], + "e2e_room_keys": ["is_verified"], } |