diff --git a/flatisfy/models/flat.py b/flatisfy/models/flat.py index 907838b..209bf83 100644 --- a/flatisfy/models/flat.py +++ b/flatisfy/models/flat.py @@ -58,7 +58,9 @@ class Flat(BASE): SQLAlchemy ORM model to store a flat. """ __tablename__ = "flats" - __searchable__ = ["title", "text", "station", "location", "details"] + __searchable__ = [ + "title", "text", "station", "location", "details", "notes" + ] # Weboob data id = Column(String, primary_key=True)