b59505eab2
* Add block hash to primary keys in transactions, receipts and logs tables * Add block hash in postgraphile triggers for transactions, receipts and logs tables * Make indexes on transaction cid and mh_key non-unique
19 lines
630 B
SQL
19 lines
630 B
SQL
-- +goose Up
|
|
CREATE TABLE IF NOT EXISTS eth.transaction_cids (
|
|
block_number BIGINT NOT NULL,
|
|
header_id VARCHAR(66) NOT NULL,
|
|
tx_hash VARCHAR(66) NOT NULL,
|
|
cid TEXT NOT NULL,
|
|
dst VARCHAR(66) NOT NULL,
|
|
src VARCHAR(66) NOT NULL,
|
|
index INTEGER NOT NULL,
|
|
mh_key TEXT NOT NULL,
|
|
tx_data BYTEA,
|
|
tx_type INTEGER,
|
|
value NUMERIC,
|
|
PRIMARY KEY (tx_hash, header_id, block_number)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE eth.transaction_cids;
|