mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-03 14:33:09 +00:00
12 lines
204 B
MySQL
12 lines
204 B
MySQL
|
|
CREATE TABLE registrations (
|
||
|
|
counter INTEGER PRIMARY KEY AUTOINCREMENT,
|
||
|
|
peer VARCHAR(64),
|
||
|
|
ns VARCHAR,
|
||
|
|
expire INTEGER,
|
||
|
|
addrs VARBINARY
|
||
|
|
);
|
||
|
|
|
||
|
|
CREATE TABLE nonce (
|
||
|
|
nonce VARBINARY
|
||
|
|
);
|