2021-08-29 18:55:44 +00:00
|
|
|
-- +goose Up
|
2022-03-22 00:53:48 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS eth.state_cids (
|
2022-03-15 21:06:13 +00:00
|
|
|
block_number BIGINT NOT NULL,
|
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,
|
2022-03-15 21:06:13 +00:00
|
|
|
mh_key TEXT NOT NULL,
|
|
|
|
FOREIGN KEY (mh_key, block_number) REFERENCES public.blocks (key, block_number) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
|
2022-03-28 23:22:57 +00:00
|
|
|
PRIMARY KEY (state_path, header_id)
|
2021-08-29 18:55:44 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
-- +goose Down
|
2021-11-15 00:06:02 +00:00
|
|
|
DROP TABLE eth.state_cids;
|