ObserverThought reproduce migration script (#1338)

This commit is contained in:
Shuchang Zheng
2024-12-06 00:58:30 -08:00
committed by GitHub
parent 95bef7f441
commit bb03891f55
2 changed files with 9 additions and 3 deletions

View File

@@ -522,6 +522,7 @@ class ObserverThought(Base):
organization_id = Column(String, ForeignKey("organizations.organization_id"), nullable=True)
observer_cruise_id = Column(String, ForeignKey("observer_cruises.observer_cruise_id"), nullable=False)
workflow_run_id = Column(String, ForeignKey("workflow_runs.workflow_run_id"), nullable=True)
workflow_run_block_id = Column(String, ForeignKey("workflow_run_blocks.workflow_run_block_id"), nullable=True)
workflow_id = Column(String, ForeignKey("workflows.workflow_id"), nullable=True)
thought = Column(String, nullable=True)
answer = Column(String, nullable=True)