mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-14 07:44:31 +00:00
12 lines
181 B
SQL
12 lines
181 B
SQL
CREATE TABLE registrations (
|
|
counter SERIAL PRIMARY KEY,
|
|
peer VARCHAR(64),
|
|
ns VARCHAR,
|
|
expire INTEGER,
|
|
addrs BYTEA
|
|
);
|
|
|
|
CREATE TABLE nonce (
|
|
nonce BYTEA
|
|
);
|