From 73f890ed6b2b6e20b34dbc30d387fde065ffff5d Mon Sep 17 00:00:00 2001 From: mariogiampieri Date: Mon, 11 Nov 2024 00:33:17 -0500 Subject: [PATCH] roll back type change --- backend/load_dv1_places_problems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/load_dv1_places_problems.py b/backend/load_dv1_places_problems.py index ad776139..4ca490a5 100644 --- a/backend/load_dv1_places_problems.py +++ b/backend/load_dv1_places_problems.py @@ -142,7 +142,7 @@ def upsert_places_and_problems(places): """ ).bindparams( bindparam(key="name", type_=String), - bindparam(key="districtr_place_id", type_=UUIDType), + bindparam(key="districtr_place_id", type_=String), ), {"name": problem["name"], "districtr_place_id": place_uuid}, ).fetchone()[0]