ipld-eth-server/db/migrations/00034_create_eth_uncle_cids_table.sql

12 lines
418 B
MySQL
Raw Normal View History

2019-04-15 16:30:41 +00:00
-- +goose Up
2020-01-31 19:25:15 +00:00
CREATE TABLE eth.uncle_cids (
2019-04-15 16:30:41 +00:00
id SERIAL PRIMARY KEY,
2020-01-31 19:25:15 +00:00
header_id INTEGER NOT NULL REFERENCES eth.header_cids (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
block_hash VARCHAR(66) NOT NULL,
parent_hash VARCHAR(66) NOT NULL,
2019-04-15 16:30:41 +00:00
cid TEXT NOT NULL,
UNIQUE (header_id, block_hash)
2019-04-15 16:30:41 +00:00
);
-- +goose Down
2020-01-31 19:25:15 +00:00
DROP TABLE eth.uncle_cids;