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

9 lines
224 B
MySQL
Raw Normal View History

2020-10-26 12:39:12 +00:00
CREATE TABLE IF NOT EXISTS identity_images(
name VARCHAR PRIMARY KEY ON CONFLICT REPLACE,
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
2020-10-26 12:39:12 +00:00
) WITHOUT ROWID;