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

15 lines
585 B
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
-- +goose Up
CREATE TABLE eth.receipt_cids (
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 REFERENCES public.blocks (key) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
2021-11-15 00:06:02 +00:00
post_state VARCHAR(66),
post_status INTEGER,
log_root VARCHAR(66)
2021-08-29 18:55:44 +00:00
);
-- +goose Down
2021-11-15 00:06:02 +00:00
DROP TABLE eth.receipt_cids;