Fix SRID of pool uploads

This makes our calculations correct when checking if an address is in
the district.
This commit is contained in:
Eli Ribble 2026-02-16 15:47:39 +00:00
parent f859e372c6
commit 123a4bf590
No known key found for this signature in database

View file

@ -0,0 +1,6 @@
-- +goose Up
ALTER TABLE fileupload.pool DROP COLUMN geom;
ALTER TABLE fileupload.pool ADD COLUMN geom geometry(Point, 4326);
-- +goose Down
ALTER TABLE fileupload.pool DROP COLUMN geom;
ALTER TABLE fileupload.pool ADD COLUMN geom geometry(Point, 3857);