d496dad33c
- limit missing headers results set to 100 so that extraction doesn't excessively block delegation - wrap checked headers functions in repository struct - move storage repository to factory, to correspond with event repository path - remove unused files - reformat sql - remove line breaks in imports
18 lines
585 B
SQL
18 lines
585 B
SQL
-- +goose Up
|
|
CREATE TABLE public.uncles
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
hash VARCHAR(66) NOT NULL,
|
|
block_id INTEGER NOT NULL REFERENCES blocks (id) ON DELETE CASCADE,
|
|
reward NUMERIC NOT NULL,
|
|
miner VARCHAR(42) NOT NULL,
|
|
raw JSONB,
|
|
block_timestamp NUMERIC,
|
|
eth_node_id INTEGER NOT NULL REFERENCES eth_nodes (id) ON DELETE CASCADE,
|
|
eth_node_fingerprint VARCHAR(128),
|
|
UNIQUE (block_id, hash)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE public.uncles;
|