From 892f67939af93515af004a61c5b1e621250a16b1 Mon Sep 17 00:00:00 2001 From: albertkun Date: Wed, 24 Jan 2024 20:44:39 -0800 Subject: [PATCH] fix: remove uneeded geometry column --- fastapi/app/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastapi/app/models.py b/fastapi/app/models.py index 6ccf40c..461e2d8 100644 --- a/fastapi/app/models.py +++ b/fastapi/app/models.py @@ -161,7 +161,6 @@ class RouteStopsGrouped(Base): agency_id = Column(String) shape_direction_0 = Column(Geometry('LINESTRING', srid=4326)) shape_direction_1 = Column(Geometry('LINESTRING', srid=4326)) - geometry = Column(Geometry('POINT', srid=4326)) class TripShapes(Base): __tablename__ = "trip_shapes"