status-go/walletdatabase/migrations/sql/1729740219_add_tracked_tran...

9 lines
344 B
SQL

-- store state of tracked transactions
CREATE TABLE IF NOT EXISTS tracked_transactions(
chain_id UNSIGNED BIGINT NOT NULL,
tx_hash BLOB NOT NULL,
tx_status STRING NOT NULL,
timestamp INTEGER NOT NULL
);
CREATE UNIQUE INDEX IF NOT EXISTS idx_tracked_transactions_per_chain_id_tx_hash ON tracked_transactions (chain_id, tx_hash);