mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-11 20:42:39 +01:00
12 lines
400 B
MySQL
12 lines
400 B
MySQL
|
-- v54: Store mapping for poll option IDs from Matrix
|
||
|
|
||
|
CREATE TABLE poll_option_id (
|
||
|
msg_mxid TEXT,
|
||
|
opt_id TEXT,
|
||
|
opt_hash bytea CHECK ( length(opt_hash) = 32 ),
|
||
|
|
||
|
PRIMARY KEY (msg_mxid, opt_id),
|
||
|
CONSTRAINT poll_option_unique_hash UNIQUE (msg_mxid, opt_hash),
|
||
|
CONSTRAINT message_mxid_fkey FOREIGN KEY (msg_mxid) REFERENCES message(mxid) ON DELETE CASCADE ON UPDATE CASCADE
|
||
|
);
|