status-go/multiaccounts/migrations/sql/1605007189_identity_images....

11 lines
268 B
MySQL
Raw Normal View History

2020-10-26 12:39:12 +00:00
CREATE TABLE IF NOT EXISTS identity_images(
key_uid VARCHAR,
name VARCHAR,
2020-10-26 12:39:12 +00:00
image_payload BLOB NOT NULL,
width int,
2020-10-26 13:02:42 +00:00
height int,
file_size int,
resize_target int,
PRIMARY KEY (key_uid, name) ON CONFLICT REPLACE
2020-10-26 12:39:12 +00:00
) WITHOUT ROWID;