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
19 lines
460 B
SQL
19 lines
460 B
SQL
-- +goose Up
|
|
CREATE TABLE full_sync_transactions
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
block_id INTEGER NOT NULL REFERENCES blocks (id) ON DELETE CASCADE,
|
|
gas_limit NUMERIC,
|
|
gas_price NUMERIC,
|
|
hash VARCHAR(66),
|
|
input_data BYTEA,
|
|
nonce NUMERIC,
|
|
raw BYTEA,
|
|
tx_from VARCHAR(66),
|
|
tx_index INTEGER,
|
|
tx_to VARCHAR(66),
|
|
"value" NUMERIC
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE full_sync_transactions; |