Skip to content

Commit

Permalink
Rebase into fields stuff...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jan 20, 2025
1 parent 332c5ee commit 39c01f7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6524,6 +6524,7 @@ class DatasetCollection(Base, Dictifiable, UsesAnnotations, Serializable):
element_count: Mapped[Optional[int]]
create_time: Mapped[datetime] = mapped_column(default=now, nullable=True)
update_time: Mapped[datetime] = mapped_column(default=now, onupdate=now, nullable=True)
fields: Mapped[Optional[bytes]] = mapped_column(JSONType, nullable=True)

elements: Mapped[List["DatasetCollectionElement"]] = relationship(
primaryjoin=(lambda: DatasetCollection.id == DatasetCollectionElement.dataset_collection_id),
Expand Down

0 comments on commit 39c01f7

Please sign in to comment.