Владимир Желнов
Владимир Желнов
The issue arises when using a column with the type Geometry("POINT") from geoalchemy2, as attempting to utilize FastCRUD results in an error: 'utf-8' codec can't decode byte 0xe6 in position...
Does FastCRUD work with relationship in SQLAlchemy? ```python class Car(Base): brand_id = Column(Integer, ForeignKey("car_brands.id"), nullable=False) body_type_id = Column(Integer, ForeignKey("car_body_types.id"), nullable=False) body_type = relationship("CarBodyType", backref="cars") brand = relationship("CarBrand", backref="cars") ``` **Description**...