forked from cerc-io/ipld-eth-server
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
22 lines
676 B
SQL
22 lines
676 B
SQL
-- +goose Up
|
|
-- SQL in this section is executed when the migration is applied.
|
|
CREATE TABLE header_sync_logs
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
header_id INTEGER NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
|
address VARCHAR(66),
|
|
topics BYTEA[],
|
|
data BYTEA,
|
|
block_number BIGINT,
|
|
block_hash VARCHAR(66),
|
|
tx_hash VARCHAR(66),
|
|
tx_index INTEGER,
|
|
log_index INTEGER,
|
|
raw JSONB,
|
|
transformed BOOL NOT NULL DEFAULT FALSE,
|
|
UNIQUE (header_id, tx_index, log_index)
|
|
);
|
|
|
|
-- +goose Down
|
|
-- SQL in this section is executed when the migration is rolled back.
|
|
DROP TABLE header_sync_logs; |