CREATE TABLE IF NOT EXISTS config (
key VARCHAR(255) NOT NULL,
value VARCHAR(255) NULL,
PRIMARY KEY(key)
);