ipld-eth-db/db/migrations/00008_create_eth_state_cids_table.sql

15 lines
609 B
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
-- +goose Up
CREATE TABLE eth.state_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,
state_leaf_key VARCHAR(66),
cid TEXT NOT NULL,
state_path BYTEA NOT NULL,
node_type INTEGER NOT NULL,
diff BOOLEAN NOT NULL DEFAULT FALSE,
mh_key TEXT NOT NULL REFERENCES public.blocks (key) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
2021-11-15 00:06:02 +00:00
PRIMARY KEY (header_id, state_path)
2021-08-29 18:55:44 +00:00
);
-- +goose Down
2021-11-15 00:06:02 +00:00
DROP TABLE eth.state_cids;