mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
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
16 lines
489 B
SQL
16 lines
489 B
SQL
CREATE TABLE IF NOT EXISTS remoteclusters (
|
|
remoteid VARCHAR(26) NOT NULL,
|
|
remoteteamid VARCHAR(26),
|
|
name VARCHAR(64) NOT NULL,
|
|
displayname VARCHAR(64),
|
|
siteurl VARCHAR(512),
|
|
createat bigint,
|
|
lastpingat bigint,
|
|
token VARCHAR(26),
|
|
remotetoken VARCHAR(26),
|
|
topics VARCHAR(512),
|
|
creatorid VARCHAR(26),
|
|
PRIMARY KEY (remoteid, name)
|
|
);
|
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS remote_clusters_site_url_unique ON remoteclusters (siteurl, remoteteamid);
|