Files
mostlymatter/config/migrations/postgres/000002_create_configuration_files.up.sql
Ibrahim Serdar Acikgoz e49cc0313a [MM-42167] Add configuration tables to migration system (#19671)
* 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>
2022-03-08 15:07:37 +03:00

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)
);