ipld-eth-server/db/migrations/00033_create_eth_header_cids_table.sql
2020-02-20 16:14:17 -06:00

13 lines
374 B
SQL

-- +goose Up
CREATE TABLE eth.header_cids (
id SERIAL PRIMARY KEY,
block_number BIGINT NOT NULL,
block_hash VARCHAR(66) NOT NULL,
parent_hash VARCHAR(66) NOT NULL,
cid TEXT NOT NULL,
td BIGINT,
UNIQUE (block_number, block_hash)
);
-- +goose Down
DROP TABLE eth.header_cids;