Combines the following repositories into one: https://github.com/mattermost/mattermost-server https://github.com/mattermost/mattermost-webapp https://github.com/mattermost/focalboard https://github.com/mattermost/mattermost-plugin-playbooks
7 строки
183 B
SQL
7 строки
183 B
SQL
CREATE TABLE IF NOT EXISTS Licenses (
|
|
Id varchar(26) NOT NULL,
|
|
CreateAt bigint(20) DEFAULT NULL,
|
|
Bytes text,
|
|
PRIMARY KEY (Id)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|