mirror of
https://github.com/logos-messaging/storenode-messages-counter.git
synced 2026-01-09 01:23:07 +00:00
8 lines
198 B
MySQL
8 lines
198 B
MySQL
|
|
CREATE TABLE IF NOT EXISTS syncTopicStatus (
|
||
|
|
clusterId INTEGER NOT NULL,
|
||
|
|
pubsubTopic VARCHAR NOT NULL,
|
||
|
|
lastSyncTimestamp INTEGER NOT NULL,
|
||
|
|
PRIMARY KEY (clusterId, pubsubTopic)
|
||
|
|
) WITHOUT ROWID;
|
||
|
|
|