Skip to content
Snippets Groups Projects
Commit 8184ae8a authored by Eric's avatar Eric
Browse files

Consider e2e_room_keys.is_verified column as boolean


This column was considered as an int, crashing the whole
migration process

Signed-off-by: default avatarEric <eric@pedr0.net>
parent 82fca11f
No related branches found
No related tags found
No related merge requests found
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"],
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment