We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 508a8b9 commit 8dca98bCopy full SHA for 8dca98b
packages/btcindexer/db/migrations/0001_initial_schema.sql
@@ -58,8 +58,8 @@ CREATE TABLE IF NOT EXISTS nbtc_deposit_addresses (
58
) STRICT;
59
60
CREATE TABLE IF NOT EXISTS nbtc_utxos (
61
+ -- TODO: The primary key should be a combination of (setup_id, nbtc_utxo_id)
62
nbtc_utxo_id INTEGER NOT NULL PRIMARY KEY, -- Sui ID asigned to this UTXO
- -- TODO: This is an ID assigned by the smart contract. The primary key should be a combination of (setup_id, nbtc_utxo_id)
63
address_id TEXT NOT NULL,
64
dwallet_id TEXT NOT NULL,
65
txid TEXT NOT NULL, -- Bitcoin transaction ID
0 commit comments