Fix blobs schema

This commit is contained in:
Girish Ramakrishnan
2022-02-01 17:29:19 -08:00
parent 73f637be26
commit 8f08ed1aed

View File

@@ -287,7 +287,7 @@ CREATE TABLE IF NOT EXISTS appMounts(
CREATE TABLE IF NOT EXISTS blobs(
id VARCHAR(128) NOT NULL UNIQUE,
value TEXT,
value MEDIUMBLOB,
PRIMARY KEY(id));
CHARACTER SET utf8 COLLATE utf8_bin;