Fix to identity_images migration sql

This commit is contained in:
Samuel Hawksby-Robinson 2020-10-26 13:02:42 +00:00 committed by Andrea Maria Piana
parent 5a4e23a0ea
commit a452972e79
1 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@ CREATE TABLE IF NOT EXISTS identity_images(
type VARCHAR,
image_payload BLOB NOT NULL,
width int,
height int
filesize int,
resize_target int,
height int,
file_size int,
resize_target int
) WITHOUT ROWID;