mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-05 23:43:07 +00:00
9 lines
275 B
MySQL
9 lines
275 B
MySQL
|
|
CREATE TABLE IF NOT EXISTS NotDeliveredMessages(
|
||
|
|
messageHash BLOB PRIMARY KEY,
|
||
|
|
timestamp INTEGER NOT NULL,
|
||
|
|
contentTopic BLOB NOT NULL,
|
||
|
|
pubsubTopic BLOB NOT NULL,
|
||
|
|
payload BLOB,
|
||
|
|
meta BLOB,
|
||
|
|
version INTEGER NOT NULL
|
||
|
|
);
|