2020-02-09 21:58:37 +00:00
|
|
|
-- +goose Up
|
|
|
|
CREATE TABLE btc.tx_inputs (
|
2020-02-10 17:16:57 +00:00
|
|
|
id SERIAL PRIMARY KEY,
|
|
|
|
tx_id INTEGER NOT NULL REFERENCES btc.transaction_cids (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
|
|
|
|
index INTEGER NOT NULL,
|
|
|
|
witness VARCHAR[],
|
|
|
|
sig_script BYTEA NOT NULL,
|
|
|
|
outpoint_tx_hash VARCHAR(66) NOT NULL,
|
|
|
|
outpoint_index NUMERIC NOT NULL,
|
2020-02-09 21:58:37 +00:00
|
|
|
UNIQUE (tx_id, index)
|
|
|
|
);
|
|
|
|
|
|
|
|
-- +goose Down
|
|
|
|
DROP TABLE btc.tx_inputs;
|