mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
13 lines
309 B
SQL
13 lines
309 B
SQL
-- Wallet definitions for drk.
|
|
-- We store data that is needed for wallet operations.
|
|
|
|
PRAGMA foreign_keys = ON;
|
|
|
|
-- Transactions history
|
|
CREATE TABLE IF NOT EXISTS transactions_history (
|
|
transaction_hash TEXT PRIMARY KEY NOT NULL,
|
|
status TEXT NOT NULL,
|
|
block_height INTEGER,
|
|
tx BLOB NOT NULL
|
|
);
|