ipld-eth-db/db/migrations/00006_create_eth_transaction_cids_table.sql

19 lines
621 B
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
-- +goose Up
2022-03-22 00:53:48 +00:00
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,
2021-11-15 00:06:02 +00:00
cid TEXT NOT NULL,
2022-08-08 15:50:27 +00:00
dst VARCHAR(66),
2021-11-15 00:06:02 +00:00
src VARCHAR(66) NOT NULL,
index INTEGER NOT NULL,
mh_key TEXT NOT NULL,
2021-11-15 00:06:02 +00:00
tx_data BYTEA,
2021-11-25 17:16:13 +00:00
tx_type INTEGER,
value NUMERIC,
PRIMARY KEY (tx_hash, header_id, block_number)
2021-08-29 18:55:44 +00:00
);
-- +goose Down
DROP TABLE eth.transaction_cids;