From 2d4465307df96a511afb8340b09247d37eb4dcd4 Mon Sep 17 00:00:00 2001 From: cawcenter Date: Tue, 16 Dec 2025 13:17:36 -0500 Subject: [PATCH] Fix: Change county to country in geo_locations to match actual schema --- migrations/01_init_complete.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/01_init_complete.sql b/migrations/01_init_complete.sql index 592829a..2983ea4 100644 --- a/migrations/01_init_complete.sql +++ b/migrations/01_init_complete.sql @@ -195,7 +195,7 @@ CREATE TABLE IF NOT EXISTS geo_locations ( -- Location details city VARCHAR(255), state VARCHAR(50), -county VARCHAR(255), +country VARCHAR(255), zip VARCHAR(10), location GEOGRAPHY (POINT, 4326),