Get error reports of failure in goroutines

This commit is contained in:
Eli Ribble 2025-11-11 22:36:29 +00:00
parent ec5203a6a6
commit 337e5f7a7d
No known key found for this signature in database
2 changed files with 18 additions and 9 deletions

View file

@ -1,5 +1,9 @@
-- +goose Up
ALTER TABLE history_treatment ADD COLUMN created TIMESTAMP;
ALTER TABLE history_proposedtreatmentarea ADD COLUMN created TIMESTAMP;
ALTER TABLE history_polygonlocation ADD COLUMN created TIMESTAMP;
-- +goose Down
ALTER TABLE history_treatment DROP COLUMN created;
ALTER TABLE history_proposedtreatmentarea DROP COLUMN created;
ALTER TABLE history_polygonlocation DROP COLUMN created;