We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f69377 commit c7261c2Copy full SHA for c7261c2
src/db_manager/models.py
@@ -21,7 +21,6 @@ class Camera(Base):
21
updated_at = Column(DateTime, default=lambda: datetime.now(timezone.utc), onupdate=lambda: datetime.now(timezone.utc))
22
23
parking_zones = relationship("ParkingZone", back_populates="camera")
24
- cars = relationship("Car", back_populates="camera")
25
26
def __repr__(self):
27
return f"<Camera(id={self.id}, title='{self.title}', is_active={self.is_active})>"
0 commit comments