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

Migration Script: consider e2e_room_keys.is_verified column as boolean
This commit is contained in:
Erik Johnston
2019-02-21 11:45:47 +00:00
committed by GitHub
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -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
+1
View File
@@ -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"],
}