Skip to content

Commit

Permalink
Fix nullability in WorkflowInvocationOutputDatasetCollectionAssociation
Browse files Browse the repository at this point in the history
(incorrect type added in a prev. commit)
  • Loading branch information
jdavcs committed Apr 5, 2024
1 parent 62b1f5d commit e4cf654
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9402,7 +9402,9 @@ class WorkflowInvocationOutputDatasetCollectionAssociation(Base, Dictifiable, Se
dataset_collection_id: Mapped[Optional[int]] = mapped_column(
ForeignKey("history_dataset_collection_association.id", name="fk_wiodca_dci"), index=True
)
workflow_output_id: Mapped[int] = mapped_column(ForeignKey("workflow_output.id", name="fk_wiodca_woi"), index=True)
workflow_output_id: Mapped[Optional[int]] = mapped_column(
ForeignKey("workflow_output.id", name="fk_wiodca_woi"), index=True
)

workflow_invocation = relationship("WorkflowInvocation", back_populates="output_dataset_collections")
workflow_step = relationship("WorkflowStep")
Expand Down

0 comments on commit e4cf654

Please sign in to comment.