mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-10 07:08:05 -05:00
11 lines
286 B
SQL
11 lines
286 B
SQL
CREATE TABLE IF NOT EXISTS deposit_keypairs(
|
|
keypair_id INTEGER PRIMARY KEY NOT NULL,
|
|
d_key_public BLOB NOT NULL,
|
|
token_key_secret BLOB NOT NULL,
|
|
token_key_public BLOB NOT NULL,
|
|
network BLOB NOT NULL,
|
|
token_id BLOB NOT NULL,
|
|
mint_address BLOB NOT NULL,
|
|
confirm BLOB NOT NULL
|
|
);
|