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
14 lines
293 B
SQL
14 lines
293 B
SQL
-- +goose Up
|
|
CREATE TABLE nodes
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
client_name VARCHAR,
|
|
genesis_block VARCHAR(66),
|
|
network_id NUMERIC,
|
|
node_id VARCHAR(128),
|
|
CONSTRAINT node_uc UNIQUE (genesis_block, network_id, node_id)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE nodes;
|