From f90faa4732bb5fd8a55991ac1fdcfc61477eddb9 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 23 Mar 2026 12:01:05 -0700 Subject: [PATCH] Set the database when importing districts --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a3b8e17..48d8d487 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ There's a table containing district information in the database, `import.distric psql CREATE SCHEMA import; shp2pgsql -s 3857 -c -D -I CA_districts.shp import.district | psql -d nidus-sync -psql +psql -d nidus-sync ALTER TABLE import.district ADD COLUMN geom_4326 geometry(MultiPolygon,4326) GENERATED ALWAYS AS (ST_Transform(geom, 4326)) STORED; ```