add run_with to workflow_runs table (#3478)

This commit is contained in:
Jonathan Dobson
2025-09-19 10:28:17 -04:00
committed by GitHub
parent 5c6bc8e1d3
commit 2abb947611
2 changed files with 32 additions and 0 deletions

View File

@@ -286,6 +286,7 @@ class WorkflowRunModel(Base):
browser_address = Column(String, nullable=True)
script_run = Column(JSON, nullable=True)
job_id = Column(String, nullable=True)
run_with = Column(String, nullable=True) # 'agent' or 'code'
queued_at = Column(DateTime, nullable=True)
started_at = Column(DateTime, nullable=True)