Merge pull request #4701 from fistons/fix-migration-script

Migration Script: consider e2e_room_keys.is_verified column as boolean
pull/14/head
Erik Johnston 6 years ago committed by GitHub
commit 9bccd5e472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      changelog.d/4680.bugfix
  2. 1
      scripts/synapse_port_db

@ -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

@ -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"],
}

Loading…
Cancel
Save