mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-03 22:43:09 +00:00
6 lines
174 B
MySQL
6 lines
174 B
MySQL
|
|
CREATE TABLE IF NOT EXISTS Peer (
|
||
|
|
peerId BLOB PRIMARY KEY,
|
||
|
|
storedInfo BLOB,
|
||
|
|
connectedness INTEGER,
|
||
|
|
disconnectTime INTEGER
|
||
|
|
) WITHOUT ROWID;
|