branding: move logo into database

initially, i tried to put this in the current value field but that
is TEXT and has a size limit of 64K. TEXT also stores things with
character encoding, so we have to stash it as base64
This commit is contained in:
Girish Ramakrishnan
2021-04-29 15:46:11 -07:00
parent 3c09416e44
commit af2c096975
6 changed files with 68 additions and 17 deletions

View File

@@ -106,6 +106,7 @@ CREATE TABLE IF NOT EXISTS appPortBindings(
CREATE TABLE IF NOT EXISTS settings(
name VARCHAR(128) NOT NULL UNIQUE,
value TEXT,
valueBlob MEDIUMBLOB,
PRIMARY KEY(name));
CREATE TABLE IF NOT EXISTS appAddonConfigs(