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
20 lines
441 B
SQL
20 lines
441 B
SQL
-- +goose Up
|
|
CREATE TABLE full_sync_logs
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
block_number BIGINT,
|
|
address VARCHAR(66),
|
|
tx_hash VARCHAR(66),
|
|
index BIGINT,
|
|
topic0 VARCHAR(66),
|
|
topic1 VARCHAR(66),
|
|
topic2 VARCHAR(66),
|
|
topic3 VARCHAR(66),
|
|
data TEXT,
|
|
CONSTRAINT full_sync_log_uc UNIQUE (block_number, index)
|
|
);
|
|
|
|
|
|
-- +goose Down
|
|
DROP TABLE full_sync_logs;
|