mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-16 00:58:36 -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
8 lines
No EOL
254 B
SQL
8 lines
No EOL
254 B
SQL
CREATE TABLE IF NOT EXISTS postreminders (
|
|
postid varchar(26) NOT NULL,
|
|
userid varchar(26) NOT NULL,
|
|
targettime bigint,
|
|
PRIMARY KEY (postid, userid)
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_postreminders_targettime ON postreminders(targettime); |