mirror of
https://github.com/status-im/status-go.git
synced 2025-02-15 08:17:28 +00:00
9 lines
224 B
SQL
9 lines
224 B
SQL
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;
|