ipld-eth-server/db/migrations/00003_create_eth_header_cids_table.sql

15 lines
508 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.header_cids (
2019-04-15 16:30:41 +00:00
id SERIAL PRIMARY KEY,
block_number BIGINT NOT NULL,
block_hash VARCHAR(66) NOT NULL,
parent_hash VARCHAR(66) NOT NULL,
2019-04-15 16:30:41 +00:00
cid TEXT NOT NULL,
td NUMERIC NOT NULL,
node_id INTEGER NOT NULL REFERENCES nodes (id) ON DELETE CASCADE,
reward NUMERIC NOT NULL,
2019-04-15 16:30:41 +00:00
UNIQUE (block_number, block_hash)
);
-- +goose Down
2020-01-31 19:25:15 +00:00
DROP TABLE eth.header_cids;