mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-28 06:25:13 +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
|
||
|
);
|