mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-11 23:03:45 -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
10 lines
283 B
SQL
10 lines
283 B
SQL
CREATE TABLE IF NOT EXISTS linkmetadata (
|
|
hash bigint NOT NULL,
|
|
url VARCHAR(2048),
|
|
"timestamp" bigint,
|
|
type VARCHAR(16),
|
|
data VARCHAR(4096),
|
|
PRIMARY KEY (hash)
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_link_metadata_url_timestamp ON linkmetadata (url, "timestamp");
|