mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
10 lines
232 B
MySQL
10 lines
232 B
MySQL
|
|
CREATE TABLE IF NOT EXISTS sharedchannelattachments (
|
||
|
|
id varchar(26) NOT NULL,
|
||
|
|
fileid varchar(26),
|
||
|
|
remoteid varchar(26),
|
||
|
|
createat bigint,
|
||
|
|
lastsyncat bigint,
|
||
|
|
PRIMARY KEY (id),
|
||
|
|
UNIQUE (fileid, remoteid)
|
||
|
|
);
|