add finished_at to steps table (#3129)

This commit is contained in:
Jonathan Dobson
2025-08-07 11:35:07 -04:00
committed by GitHub
parent d0abe13e14
commit 1a0f57248e
2 changed files with 32 additions and 0 deletions

View File

@@ -134,6 +134,7 @@ class StepModel(Base):
reasoning_token_count = Column(Integer, default=0)
cached_token_count = Column(Integer, default=0)
step_cost = Column(Numeric, default=0)
finished_at = Column(DateTime, nullable=True)
class OrganizationModel(Base):