Added profile image db migrations

This commit is contained in:
Samuel Hawksby-Robinson 2020-10-26 12:39:12 +00:00 committed by Andrea Maria Piana
parent 2f92c7d076
commit c176a7fca0
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP TABLE identity_images;

View File

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS identity_images(
type VARCHAR,
image_payload BLOB NOT NULL,
width int,
height int
filesize int,
resize_target int,
) WITHOUT ROWID;