Store addresses on every geocode

This commit is contained in:
Eli Ribble 2026-04-10 22:32:40 +00:00
parent e04b86218d
commit 730f40956f
No known key found for this signature in database
12 changed files with 223 additions and 229 deletions

View file

@ -0,0 +1,8 @@
-- +goose Up
ALTER TABLE address
ALTER COLUMN country
TYPE TEXT
USING country::TEXT;
DROP TYPE CountryType;
-- +goose Down