Add SetTellPositionRequest schema and minor cleanup.

Added a new `SetTellPositionRequest` schema in `schemas.py` to support bulk updates of TELL positions. Commented out redundant metadata operations in `main.py` and cleaned up unused content in the test notebook for better readability.
This commit is contained in:
GotthardG
2025-02-04 14:43:59 +01:00
parent fef9b1c618
commit 780ba1959f
4 changed files with 553 additions and 380 deletions

View File

@ -208,6 +208,7 @@ class PuckEvent(Base):
id = Column(Integer, primary_key=True, index=True)
puck_id = Column(Integer, ForeignKey("pucks.id"))
tell = Column(String(255), nullable=True)
tell_position = Column(String(255), nullable=True)
event_type = Column(String(255), index=True)
timestamp = Column(DateTime, default=datetime.now)