nidus-sync/db/migrations/00056_publicreport_consent.sql
Eli Ribble 57191fa222
Alter report submission page to request reporter name and consent
This also adds the new mechanism for handling notifications on reports
2026-02-06 15:39:49 +00:00

7 lines
323 B
SQL

-- +goose Up
ALTER TABLE publicreport.nuisance ADD COLUMN reporter_contact_consent BOOLEAN;
ALTER TABLE publicreport.pool ADD COLUMN reporter_contact_consent BOOLEAN;
-- +goose Down
ALTER TABLE publicreport.pool DROP COLUMN reporter_contact_consent;
ALTER TABLE publicreport.nuisance DROP COLUMN reporter_contact_consent;