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