Tidy up crawling and implement boolean search

This commit is contained in:
rmgr 2024-04-04 20:46:34 +10:30
parent d4bb3fb8dc
commit 7ee9d978b2
4 changed files with 91 additions and 30 deletions

View file

@ -15,6 +15,7 @@ class Documents(Base):
html_content = Column(String)
first_crawl_date = Column(DateTime)
last_crawl_date = Column(DateTime)
last_index_date = Column(DateTime)
document_tokens = relationship("Document_Tokens", back_populates="document")