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
12 lines
255 B
SQL
12 lines
255 B
SQL
-- +goose Up
|
|
ALTER TABLE blocks
|
|
ADD COLUMN node_id INTEGER NOT NULL,
|
|
ADD CONSTRAINT node_fk
|
|
FOREIGN KEY (node_id)
|
|
REFERENCES nodes (id)
|
|
ON DELETE CASCADE;
|
|
|
|
-- +goose Down
|
|
ALTER TABLE blocks
|
|
DROP COLUMN node_id;
|