mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-19 10:13:37 +00:00
12 lines
204 B
SQL
12 lines
204 B
SQL
CREATE TABLE registrations (
|
|
counter INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
peer VARCHAR(64),
|
|
ns VARCHAR,
|
|
expire INTEGER,
|
|
addrs VARBINARY
|
|
);
|
|
|
|
CREATE TABLE nonce (
|
|
nonce VARBINARY
|
|
);
|