mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-05 22:38:54 +01:00
11 lines
400 B
SQL
11 lines
400 B
SQL
-- 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
|
|
);
|