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