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
15 lines
343 B
SQL
15 lines
343 B
SQL
-- +goose Up
|
|
CREATE TABLE public.queued_storage
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
block_height BIGINT,
|
|
block_hash BYTEA,
|
|
contract BYTEA,
|
|
storage_key BYTEA,
|
|
storage_value BYTEA,
|
|
UNIQUE (block_height, block_hash, contract, storage_key, storage_value)
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE public.queued_storage;
|