Владимир Желнов

Results 2 issues of Владимир Желнов

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...

enhancement

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**...

enhancement
Automatic Endpoint