ipld-eth-db/db/migrations/00007_create_eth_receipt_cids_table.sql

17 lines
701 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.receipt_cids (
block_number BIGINT NOT NULL,
2021-11-15 00:06:02 +00:00
tx_id VARCHAR(66) PRIMARY KEY REFERENCES eth.transaction_cids (tx_hash) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
leaf_cid TEXT NOT NULL,
contract VARCHAR(66),
contract_hash VARCHAR(66),
leaf_mh_key TEXT NOT NULL,
2021-11-15 00:06:02 +00:00
post_state VARCHAR(66),
post_status INTEGER,
log_root VARCHAR(66),
FOREIGN KEY (leaf_mh_key, block_number) REFERENCES public.blocks (key, block_number) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
2021-08-29 18:55:44 +00:00
);
-- +goose Down
2021-11-15 00:06:02 +00:00
DROP TABLE eth.receipt_cids;