diff --git a/backend/src/model/van_location.py b/backend/src/model/van_location.py index 07ba71e8..a7449ca2 100644 --- a/backend/src/model/van_location.py +++ b/backend/src/model/van_location.py @@ -15,7 +15,7 @@ class VanLocation(Base): primary_key=True, autoincrement=True, nullable=False ) created_at: Mapped[datetime] = mapped_column( - TZDateTime, nullable=False, server_default=func.now() + TZDateTime, nullable=False, server_default=func.now() # pylint: disable=all ) session_id: Mapped[int] = mapped_column( ForeignKey("van_tracker_session.id"), nullable=False