feat: improve audit exports and admin analytics
This commit is contained in:
@@ -248,6 +248,9 @@ class KnowledgeRetrievalCandidate(Base):
|
||||
|
||||
class HumanAttentionRecord(Base):
|
||||
__tablename__ = "sys_human_attention_record"
|
||||
__table_args__ = (
|
||||
Index("ix_human_attention_created", "created_at", "id"),
|
||||
)
|
||||
|
||||
id: Mapped[int] = mapped_column(PRIMARY_KEY_TYPE, primary_key=True, autoincrement=True)
|
||||
session_id: Mapped[int] = mapped_column(BigInteger, index=True, nullable=False)
|
||||
|
||||
Reference in New Issue
Block a user