* add configuration tables to migration system * config: move config migrations into new system completely * add mysql specific bits * use helper db instance instead * fix typo Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
7 строки
179 B
SQL
7 строки
179 B
SQL
CREATE TABLE IF NOT EXISTS configurationfiles (
|
|
name VARCHAR(64),
|
|
data text NOT NULL,
|
|
createat bigint NOT NULL,
|
|
updateat bigint NOT NULL,
|
|
PRIMARY KEY (name)
|
|
); |