CREATE TABLE IF NOT EXISTS identity_images(
name VARCHAR PRIMARY KEY ON CONFLICT REPLACE,
image_payload BLOB NOT NULL,
width int,
height int,
file_size int,
resize_target int
) WITHOUT ROWID;