mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
11 lines
268 B
SQL
11 lines
268 B
SQL
CREATE TABLE IF NOT EXISTS identity_images(
|
|
key_uid VARCHAR,
|
|
name VARCHAR,
|
|
image_payload BLOB NOT NULL,
|
|
width int,
|
|
height int,
|
|
file_size int,
|
|
resize_target int,
|
|
PRIMARY KEY (key_uid, name) ON CONFLICT REPLACE
|
|
) WITHOUT ROWID;
|