github.com/mattermost/mattermost-server/v6@v6.7.2/config/migrations/postgres/000002_create_configuration_files.up.sql (about)

     1  CREATE TABLE IF NOT EXISTS configurationfiles (
     2      name VARCHAR(64),
     3      data text NOT NULL,
     4      createat bigint NOT NULL,
     5      updateat bigint NOT NULL,
     6      PRIMARY KEY (name)
     7  );