mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
7 lines
176 B
SQL
7 lines
176 B
SQL
CREATE TABLE IF NOT EXISTS main_keypairs(
|
|
keypair_id INTEGER PRIMARY KEY NOT NULL,
|
|
token_key_secret BLOB NOT NULL,
|
|
token_key_public BLOB NOT NULL,
|
|
network BLOB NOT NULL
|
|
);
|