ipld-eth-db/db/migrations/00005_create_eth_uncle_cids_table.sql

13 lines
528 B
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
-- +goose Up
CREATE TABLE eth.uncle_cids (
2021-11-15 00:06:02 +00:00
block_hash VARCHAR(66) PRIMARY KEY,
header_id VARCHAR(66) NOT NULL REFERENCES eth.header_cids (block_hash) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
parent_hash VARCHAR(66) NOT NULL,
cid TEXT NOT NULL,
mh_key TEXT NOT NULL REFERENCES public.blocks (key) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
reward NUMERIC NOT NULL
2021-08-29 18:55:44 +00:00
);
-- +goose Down
2021-11-15 00:06:02 +00:00
DROP TABLE eth.uncle_cids;