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
11 lines
274 B
SQL
11 lines
274 B
SQL
-- +goose Up
|
|
CREATE TABLE public.checked_headers
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
header_id INTEGER UNIQUE NOT NULL REFERENCES headers (id) ON DELETE CASCADE,
|
|
check_count INTEGER NOT NULL DEFAULT 1
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE public.checked_headers;
|