ipld-eth-server/db/migrations/00020_create_btc_header_cids_table.sql

15 lines
427 B
MySQL
Raw Normal View History

2020-01-31 20:08:51 +00:00
-- +goose Up
CREATE TABLE btc.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,
timestamp NUMERIC NOT NULL,
bits BIGINT NOT NULL,
node_id INTEGER NOT NULL REFERENCES nodes (id) ON DELETE CASCADE,
2020-01-31 20:08:51 +00:00
UNIQUE (block_number, block_hash)
);
-- +goose Down
DROP TABLE btc.header_cids;