@@ -2415,7 +2415,7 @@ class JobToInputDatasetAssociation(Base, RepresentById):
2415
2415
dataset_id : Mapped [int ] = mapped_column (ForeignKey ("history_dataset_association.id" ), index = True , nullable = True )
2416
2416
dataset_version : Mapped [Optional [int ]]
2417
2417
name : Mapped [str ] = mapped_column (String (255 ), nullable = True )
2418
- adapter : Mapped [Dict [str , Any ]] = mapped_column (JSONType )
2418
+ adapter : Mapped [Optional [ Dict [str , Any ]]] = mapped_column (JSONType , nullable = True )
2419
2419
dataset : Mapped ["HistoryDatasetAssociation" ] = relationship (lazy = "joined" , back_populates = "dependent_jobs" )
2420
2420
job : Mapped ["Job" ] = relationship (back_populates = "input_datasets" )
2421
2421
@@ -2458,7 +2458,7 @@ class JobToInputDatasetCollectionAssociation(Base, RepresentById):
2458
2458
ForeignKey ("history_dataset_collection_association.id" ), index = True , nullable = True
2459
2459
)
2460
2460
name : Mapped [str ] = mapped_column (String (255 ), nullable = True )
2461
- adapter : Mapped [Dict [str , Any ]] = mapped_column (JSONType )
2461
+ adapter : Mapped [Optional [ Dict [str , Any ]]] = mapped_column (JSONType , nullable = True )
2462
2462
dataset_collection : Mapped ["HistoryDatasetCollectionAssociation" ] = relationship (lazy = "joined" )
2463
2463
job : Mapped ["Job" ] = relationship (back_populates = "input_dataset_collections" )
2464
2464
@@ -2477,7 +2477,7 @@ class JobToInputDatasetCollectionElementAssociation(Base, RepresentById):
2477
2477
ForeignKey ("dataset_collection_element.id" ), index = True , nullable = True
2478
2478
)
2479
2479
name : Mapped [str ] = mapped_column (Unicode (255 ), nullable = True )
2480
- adapter : Mapped [Dict [str , Any ]] = mapped_column (JSONType )
2480
+ adapter : Mapped [Optional [ Dict [str , Any ]]] = mapped_column (JSONType , nullable = True )
2481
2481
dataset_collection_element : Mapped ["DatasetCollectionElement" ] = relationship (lazy = "joined" )
2482
2482
job : Mapped ["Job" ] = relationship (back_populates = "input_dataset_collection_elements" )
2483
2483
0 commit comments