cashier_deposit_keypairs.sql 286 B

12345678910
  1. CREATE TABLE IF NOT EXISTS deposit_keypairs(
  2. keypair_id INTEGER PRIMARY KEY NOT NULL,
  3. d_key_public BLOB NOT NULL,
  4. token_key_secret BLOB NOT NULL,
  5. token_key_public BLOB NOT NULL,
  6. network BLOB NOT NULL,
  7. token_id BLOB NOT NULL,
  8. mint_address BLOB NOT NULL,
  9. confirm BLOB NOT NULL
  10. );