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

     1  CREATE TABLE IF NOT EXISTS configurations (
     2      id varchar(26),
     3      value text NOT NULL,
     4      createat bigint NOT NULL,
     5      active boolean DEFAULT NULL,
     6      PRIMARY KEY (id),
     7      UNIQUE (active)
     8  );