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>
This commit is contained in:
Eric 2019-02-20 23:11:21 +01:00
parent 82fca11fc1
commit 8184ae8a09
2 changed files with 4 additions and 0 deletions

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