Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Merge pull request #383 from openchatai/feat/analytics
Browse files Browse the repository at this point in the history
removing fk contraint on analytics
  • Loading branch information
codebanesr authored Dec 8, 2023
2 parents 7a87a30 + 1313980 commit 5a9bcde
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion llm-server/shared/models/opencopilot_db/analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ class Analytics(Base):
__tablename__ = 'analytics'

chatbot_id = Column(String(36), primary_key=True)
chatbot_id_fk = Column(String(36), ForeignKey(Chatbot.id), nullable=True)
successful_operations = Column(Integer)
total_operations = Column(Integer)
logs= Column(String(4096), nullable=True)
Expand Down

0 comments on commit 5a9bcde

Please sign in to comment.