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

17 lines
691 B
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
-- +goose Up
CREATE TABLE eth.transaction_cids (
2021-11-15 00:06:02 +00:00
header_id VARCHAR(66) NOT NULL REFERENCES eth.header_cids (block_hash) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
tx_hash VARCHAR(66) PRIMARY KEY,
2021-11-15 00:06:02 +00:00
cid TEXT NOT NULL,
dst VARCHAR(66) NOT NULL,
src VARCHAR(66) NOT NULL,
index INTEGER NOT NULL,
mh_key TEXT NOT NULL REFERENCES public.blocks (key) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
2021-11-15 00:06:02 +00:00
tx_data BYTEA,
2021-11-25 17:16:13 +00:00
tx_type INTEGER,
value NUMERIC
2021-08-29 18:55:44 +00:00
);
-- +goose Down
DROP TABLE eth.transaction_cids;