Make signals, not leads, from public reports.

This commit is contained in:
Eli Ribble 2026-03-19 17:41:38 +00:00
parent 2a207fd613
commit 908ac4faea
No known key found for this signature in database
9 changed files with 531 additions and 102 deletions

View file

@ -0,0 +1,4 @@
-- +goose Up
ALTER TABLE signal ADD COLUMN site_id INTEGER REFERENCES site(id);
-- +goose Down
ALTER TABLE signal DROP COLUMN site_id;