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

15 lines
450 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,
header_id VARCHAR(66) NOT NULL,
tx_id VARCHAR(66) NOT NULL,
cid TEXT NOT NULL,
2021-11-15 00:06:02 +00:00
contract VARCHAR(66),
post_state VARCHAR(66),
2022-08-08 15:50:27 +00:00
post_status SMALLINT,
PRIMARY KEY (tx_id, header_id, block_number)
2021-08-29 18:55:44 +00:00
);
-- +goose Down
2021-11-15 00:06:02 +00:00
DROP TABLE eth.receipt_cids;