@@ -803,22 +803,22 @@ class User(Base, Dictifiable, RepresentById):
803
803
activation_token : Mapped [Optional [str ]] = mapped_column (TrimmedString (64 ), index = True )
804
804
805
805
addresses : Mapped [List ["UserAddress" ]] = relationship (
806
- back_populates = "user" , order_by = lambda : desc (UserAddress .update_time ), cascade_backrefs = False
806
+ back_populates = "user" , order_by = lambda : desc (UserAddress .update_time )
807
807
)
808
808
custos_auth : Mapped [List ["CustosAuthnzToken" ]] = relationship (back_populates = "user" )
809
809
chat_exchanges : Mapped [List ["ChatExchange" ]] = relationship (back_populates = "user" )
810
810
default_permissions : Mapped [List ["DefaultUserPermissions" ]] = relationship (back_populates = "user" )
811
811
groups : Mapped [List ["UserGroupAssociation" ]] = relationship (back_populates = "user" )
812
812
histories : Mapped [List ["History" ]] = relationship (
813
- back_populates = "user" , order_by = lambda : desc (History .update_time ), cascade_backrefs = False # type: ignore[has-type]
813
+ back_populates = "user" , order_by = lambda : desc (History .update_time ) # type: ignore[has-type]
814
814
)
815
815
active_histories : Mapped [List ["History" ]] = relationship (
816
816
primaryjoin = (lambda : (History .user_id == User .id ) & (not_ (History .deleted )) & (not_ (History .archived ))),
817
817
viewonly = True ,
818
818
order_by = lambda : desc (History .update_time ), # type: ignore[has-type]
819
819
)
820
820
galaxy_sessions : Mapped [List ["GalaxySession" ]] = relationship (
821
- back_populates = "user" , order_by = lambda : desc (GalaxySession .update_time ), cascade_backrefs = False
821
+ back_populates = "user" , order_by = lambda : desc (GalaxySession .update_time )
822
822
)
823
823
object_stores : Mapped [List ["UserObjectStore" ]] = relationship (back_populates = "user" )
824
824
file_sources : Mapped [List ["UserFileSource" ]] = relationship (back_populates = "user" )
@@ -853,11 +853,8 @@ class User(Base, Dictifiable, RepresentById):
853
853
stored_workflows : Mapped [List ["StoredWorkflow" ]] = relationship (
854
854
back_populates = "user" ,
855
855
primaryjoin = (lambda : User .id == StoredWorkflow .user_id ),
856
- cascade_backrefs = False ,
857
- )
858
- all_notifications : Mapped [List ["UserNotificationAssociation" ]] = relationship (
859
- back_populates = "user" , cascade_backrefs = False
860
856
)
857
+ all_notifications : Mapped [List ["UserNotificationAssociation" ]] = relationship (back_populates = "user" )
861
858
862
859
preferences : AssociationProxy [Any ]
863
860
@@ -1507,9 +1504,7 @@ class Job(Base, JobLike, UsesCreateAndUpdateTime, Dictifiable, Serializable):
1507
1504
output_dataset_collections : Mapped [List ["JobToImplicitOutputDatasetCollectionAssociation" ]] = relationship (
1508
1505
back_populates = "job"
1509
1506
)
1510
- post_job_actions : Mapped [List ["PostJobActionAssociation" ]] = relationship (
1511
- back_populates = "job" , cascade_backrefs = False
1512
- )
1507
+ post_job_actions : Mapped [List ["PostJobActionAssociation" ]] = relationship (back_populates = "job" )
1513
1508
input_library_datasets : Mapped [List ["JobToInputLibraryDatasetAssociation" ]] = relationship (back_populates = "job" )
1514
1509
output_library_datasets : Mapped [List ["JobToOutputLibraryDatasetAssociation" ]] = relationship (back_populates = "job" )
1515
1510
external_output_metadata : Mapped [List ["JobExternalOutputMetadata" ]] = relationship (back_populates = "job" )
@@ -1522,17 +1517,17 @@ class Job(Base, JobLike, UsesCreateAndUpdateTime, Dictifiable, Serializable):
1522
1517
back_populates = "job" , uselist = True
1523
1518
)
1524
1519
implicit_collection_jobs_association : Mapped [List ["ImplicitCollectionJobsJobAssociation" ]] = relationship (
1525
- back_populates = "job" , uselist = False , cascade_backrefs = False
1520
+ back_populates = "job" , uselist = False
1526
1521
)
1527
1522
container : Mapped [Optional ["JobContainerAssociation" ]] = relationship (back_populates = "job" , uselist = False )
1528
1523
data_manager_association : Mapped [Optional ["DataManagerJobAssociation" ]] = relationship (
1529
- back_populates = "job" , uselist = False , cascade_backrefs = False
1524
+ back_populates = "job" , uselist = False
1530
1525
)
1531
1526
history_dataset_collection_associations : Mapped [List ["HistoryDatasetCollectionAssociation" ]] = relationship (
1532
1527
back_populates = "job"
1533
1528
)
1534
1529
workflow_invocation_step : Mapped [Optional ["WorkflowInvocationStep" ]] = relationship (
1535
- back_populates = "job" , uselist = False , cascade_backrefs = False
1530
+ back_populates = "job" , uselist = False
1536
1531
)
1537
1532
1538
1533
any_output_dataset_collection_instances_deleted = None
@@ -2607,9 +2602,7 @@ class ImplicitCollectionJobs(Base, Serializable):
2607
2602
2608
2603
id : Mapped [int ] = mapped_column (primary_key = True )
2609
2604
populated_state : Mapped [str ] = mapped_column (TrimmedString (64 ), default = "new" )
2610
- jobs : Mapped [List ["ImplicitCollectionJobsJobAssociation" ]] = relationship (
2611
- back_populates = "implicit_collection_jobs" , cascade_backrefs = False
2612
- )
2605
+ jobs : Mapped [List ["ImplicitCollectionJobsJobAssociation" ]] = relationship (back_populates = "implicit_collection_jobs" )
2613
2606
2614
2607
class populated_states (str , Enum ):
2615
2608
NEW = "new" # New implicit jobs object, unpopulated job associations
@@ -3029,7 +3022,7 @@ class Group(Base, Dictifiable, RepresentById):
3029
3022
name : Mapped [Optional [str ]] = mapped_column (String (255 ), index = True , unique = True )
3030
3023
deleted : Mapped [Optional [bool ]] = mapped_column (index = True , default = False )
3031
3024
quotas : Mapped [List ["GroupQuotaAssociation" ]] = relationship (back_populates = "group" )
3032
- roles : Mapped [List ["GroupRoleAssociation" ]] = relationship (back_populates = "group" , cascade_backrefs = False )
3025
+ roles : Mapped [List ["GroupRoleAssociation" ]] = relationship (back_populates = "group" )
3033
3026
users : Mapped [List ["UserGroupAssociation" ]] = relationship ("UserGroupAssociation" , back_populates = "group" )
3034
3027
3035
3028
dict_collection_visible_keys = ["id" , "name" ]
@@ -3190,7 +3183,7 @@ class History(Base, HasTags, Dictifiable, UsesAnnotations, HasName, Serializable
3190
3183
archive_export_id : Mapped [Optional [int ]] = mapped_column (ForeignKey ("store_export_association.id" ), default = None )
3191
3184
3192
3185
datasets : Mapped [List ["HistoryDatasetAssociation" ]] = relationship (
3193
- back_populates = "history" , cascade_backrefs = False , order_by = lambda : asc (HistoryDatasetAssociation .hid ) # type: ignore[has-type]
3186
+ back_populates = "history" , order_by = lambda : asc (HistoryDatasetAssociation .hid ) # type: ignore[has-type]
3194
3187
)
3195
3188
exports : Mapped [List ["JobExportHistoryArchive" ]] = relationship (
3196
3189
back_populates = "history" ,
@@ -3255,11 +3248,9 @@ class History(Base, HasTags, Dictifiable, UsesAnnotations, HasName, Serializable
3255
3248
default_permissions : Mapped [List ["DefaultHistoryPermissions" ]] = relationship (back_populates = "history" )
3256
3249
users_shared_with : Mapped [List ["HistoryUserShareAssociation" ]] = relationship (back_populates = "history" )
3257
3250
galaxy_sessions = relationship ("GalaxySessionToHistoryAssociation" , back_populates = "history" )
3258
- workflow_invocations : Mapped [List ["WorkflowInvocation" ]] = relationship (
3259
- back_populates = "history" , cascade_backrefs = False
3260
- )
3251
+ workflow_invocations : Mapped [List ["WorkflowInvocation" ]] = relationship (back_populates = "history" )
3261
3252
user : Mapped [Optional ["User" ]] = relationship (back_populates = "histories" )
3262
- jobs : Mapped [List ["Job" ]] = relationship (back_populates = "history" , cascade_backrefs = False )
3253
+ jobs : Mapped [List ["Job" ]] = relationship (back_populates = "history" )
3263
3254
tool_requests : Mapped [List ["ToolRequest" ]] = relationship (back_populates = "history" )
3264
3255
3265
3256
update_time = column_property (
@@ -3916,9 +3907,7 @@ class Quota(Base, Dictifiable, RepresentById):
3916
3907
operation : Mapped [Optional [str ]] = mapped_column (String (8 ))
3917
3908
deleted : Mapped [Optional [bool ]] = mapped_column (index = True , default = False )
3918
3909
quota_source_label : Mapped [Optional [str ]] = mapped_column (String (32 ), default = None )
3919
- default : Mapped [List ["DefaultQuotaAssociation" ]] = relationship (
3920
- "DefaultQuotaAssociation" , back_populates = "quota" , cascade_backrefs = False
3921
- )
3910
+ default : Mapped [List ["DefaultQuotaAssociation" ]] = relationship ("DefaultQuotaAssociation" , back_populates = "quota" )
3922
3911
groups : Mapped [List ["GroupQuotaAssociation" ]] = relationship (back_populates = "quota" )
3923
3912
users : Mapped [List ["UserQuotaAssociation" ]] = relationship (back_populates = "quota" )
3924
3913
@@ -4200,15 +4189,12 @@ class Dataset(Base, StorableObject, Serializable):
4200
4189
),
4201
4190
viewonly = True ,
4202
4191
)
4203
- hashes : Mapped [List ["DatasetHash" ]] = relationship (back_populates = "dataset" , cascade_backrefs = False )
4192
+ hashes : Mapped [List ["DatasetHash" ]] = relationship (back_populates = "dataset" )
4204
4193
sources : Mapped [List ["DatasetSource" ]] = relationship (back_populates = "dataset" )
4205
- history_associations : Mapped [List ["HistoryDatasetAssociation" ]] = relationship (
4206
- back_populates = "dataset" , cascade_backrefs = False
4207
- )
4194
+ history_associations : Mapped [List ["HistoryDatasetAssociation" ]] = relationship (back_populates = "dataset" )
4208
4195
library_associations : Mapped [List ["LibraryDatasetDatasetAssociation" ]] = relationship (
4209
4196
primaryjoin = (lambda : LibraryDatasetDatasetAssociation .table .c .dataset_id == Dataset .id ),
4210
4197
back_populates = "dataset" ,
4211
- cascade_backrefs = False ,
4212
4198
)
4213
4199
4214
4200
# failed_metadata is only valid as DatasetInstance state currently
@@ -5779,7 +5765,7 @@ class Library(Base, Dictifiable, HasName, Serializable):
5779
5765
description : Mapped [Optional [str ]] = mapped_column (TEXT )
5780
5766
synopsis : Mapped [Optional [str ]] = mapped_column (TEXT )
5781
5767
root_folder = relationship ("LibraryFolder" , back_populates = "library_root" )
5782
- actions : Mapped [List ["LibraryPermissions" ]] = relationship (back_populates = "library" , cascade_backrefs = False )
5768
+ actions : Mapped [List ["LibraryPermissions" ]] = relationship (back_populates = "library" )
5783
5769
5784
5770
permitted_actions = get_permitted_actions (filter = "LIBRARY" )
5785
5771
dict_collection_visible_keys = ["id" , "name" ]
@@ -5894,7 +5880,7 @@ class LibraryFolder(Base, Dictifiable, HasName, Serializable):
5894
5880
)
5895
5881
5896
5882
library_root = relationship ("Library" , back_populates = "root_folder" )
5897
- actions : Mapped [List ["LibraryFolderPermissions" ]] = relationship (back_populates = "folder" , cascade_backrefs = False )
5883
+ actions : Mapped [List ["LibraryFolderPermissions" ]] = relationship (back_populates = "folder" )
5898
5884
5899
5885
dict_element_visible_keys = [
5900
5886
"id" ,
@@ -6016,9 +6002,7 @@ class LibraryDataset(Base, Serializable):
6016
6002
viewonly = True ,
6017
6003
uselist = True ,
6018
6004
)
6019
- actions : Mapped [List ["LibraryDatasetPermissions" ]] = relationship (
6020
- back_populates = "library_dataset" , cascade_backrefs = False
6021
- )
6005
+ actions : Mapped [List ["LibraryDatasetPermissions" ]] = relationship (back_populates = "library_dataset" )
6022
6006
6023
6007
# This class acts as a proxy to the currently selected LDDA
6024
6008
upload_options = [
@@ -7651,7 +7635,7 @@ class GalaxySession(Base, RepresentById):
7651
7635
last_action : Mapped [Optional [datetime ]]
7652
7636
current_history : Mapped [Optional ["History" ]] = relationship ()
7653
7637
histories : Mapped [List ["GalaxySessionToHistoryAssociation" ]] = relationship (
7654
- back_populates = "galaxy_session" , cascade_backrefs = False
7638
+ back_populates = "galaxy_session" ,
7655
7639
)
7656
7640
user : Mapped [Optional ["User" ]] = relationship (back_populates = "galaxy_sessions" )
7657
7641
@@ -7729,7 +7713,6 @@ class StoredWorkflow(Base, HasTags, Dictifiable, RepresentById, UsesCreateAndUpd
7729
7713
cascade = "all, delete-orphan" ,
7730
7714
primaryjoin = (lambda : StoredWorkflow .id == Workflow .stored_workflow_id ),
7731
7715
order_by = lambda : - Workflow .id ,
7732
- cascade_backrefs = False ,
7733
7716
)
7734
7717
latest_workflow : Mapped ["Workflow" ] = relationship (
7735
7718
"Workflow" ,
@@ -7922,7 +7905,6 @@ class Workflow(Base, Dictifiable, RepresentById):
7922
7905
"WorkflowStep" ,
7923
7906
primaryjoin = (lambda : Workflow .id == WorkflowStep .subworkflow_id ),
7924
7907
back_populates = "subworkflow" ,
7925
- cascade_backrefs = False ,
7926
7908
)
7927
7909
stored_workflow = relationship (
7928
7910
"StoredWorkflow" ,
@@ -8129,18 +8111,15 @@ class WorkflowStep(Base, RepresentById, UsesCreateAndUpdateTime):
8129
8111
order_by = lambda : WorkflowStepAnnotationAssociation .id ,
8130
8112
back_populates = "workflow_step" ,
8131
8113
)
8132
- post_job_actions = relationship ("PostJobAction" , back_populates = "workflow_step" , cascade_backrefs = False )
8114
+ post_job_actions = relationship ("PostJobAction" , back_populates = "workflow_step" )
8133
8115
inputs = relationship ("WorkflowStepInput" , back_populates = "workflow_step" )
8134
- workflow_outputs : Mapped [List ["WorkflowOutput" ]] = relationship (
8135
- back_populates = "workflow_step" , cascade_backrefs = False
8136
- )
8116
+ workflow_outputs : Mapped [List ["WorkflowOutput" ]] = relationship (back_populates = "workflow_step" )
8137
8117
output_connections : Mapped [List ["WorkflowStepConnection" ]] = relationship (
8138
8118
primaryjoin = (lambda : WorkflowStepConnection .output_step_id == WorkflowStep .id )
8139
8119
)
8140
8120
workflow : Mapped ["Workflow" ] = relationship (
8141
8121
primaryjoin = (lambda : Workflow .id == WorkflowStep .workflow_id ),
8142
8122
back_populates = "steps" ,
8143
- cascade_backrefs = False ,
8144
8123
)
8145
8124
8146
8125
STEP_TYPE_TO_INPUT_TYPE = {
@@ -8445,7 +8424,6 @@ class WorkflowStepInput(Base, RepresentById):
8445
8424
connections : Mapped [List ["WorkflowStepConnection" ]] = relationship (
8446
8425
back_populates = "input_step_input" ,
8447
8426
primaryjoin = (lambda : WorkflowStepConnection .input_step_input_id == WorkflowStepInput .id ),
8448
- cascade_backrefs = False ,
8449
8427
)
8450
8428
8451
8429
def __init__ (self , workflow_step ):
@@ -8695,20 +8673,13 @@ class WorkflowInvocation(Base, UsesCreateAndUpdateTime, Dictifiable, Serializabl
8695
8673
history_id : Mapped [Optional [int ]] = mapped_column (ForeignKey ("history.id" ), index = True )
8696
8674
8697
8675
history = relationship ("History" , back_populates = "workflow_invocations" )
8698
- input_parameters = relationship (
8699
- "WorkflowRequestInputParameter" , back_populates = "workflow_invocation" , cascade_backrefs = False
8700
- )
8701
- step_states = relationship ("WorkflowRequestStepState" , back_populates = "workflow_invocation" , cascade_backrefs = False )
8702
- input_step_parameters = relationship (
8703
- "WorkflowRequestInputStepParameter" , back_populates = "workflow_invocation" , cascade_backrefs = False
8704
- )
8705
- input_datasets = relationship (
8706
- "WorkflowRequestToInputDatasetAssociation" , back_populates = "workflow_invocation" , cascade_backrefs = False
8707
- )
8676
+ input_parameters = relationship ("WorkflowRequestInputParameter" , back_populates = "workflow_invocation" )
8677
+ step_states = relationship ("WorkflowRequestStepState" , back_populates = "workflow_invocation" )
8678
+ input_step_parameters = relationship ("WorkflowRequestInputStepParameter" , back_populates = "workflow_invocation" )
8679
+ input_datasets = relationship ("WorkflowRequestToInputDatasetAssociation" , back_populates = "workflow_invocation" )
8708
8680
input_dataset_collections = relationship (
8709
8681
"WorkflowRequestToInputDatasetCollectionAssociation" ,
8710
8682
back_populates = "workflow_invocation" ,
8711
- cascade_backrefs = False ,
8712
8683
)
8713
8684
subworkflow_invocations = relationship (
8714
8685
"WorkflowInvocationToSubworkflowInvocationAssociation" ,
@@ -8722,20 +8693,14 @@ class WorkflowInvocation(Base, UsesCreateAndUpdateTime, Dictifiable, Serializabl
8722
8693
"WorkflowInvocationStep" ,
8723
8694
back_populates = "workflow_invocation" ,
8724
8695
order_by = lambda : WorkflowInvocationStep .order_index ,
8725
- cascade_backrefs = False ,
8726
8696
)
8727
8697
workflow = relationship ("Workflow" )
8728
8698
output_dataset_collections = relationship (
8729
8699
"WorkflowInvocationOutputDatasetCollectionAssociation" ,
8730
8700
back_populates = "workflow_invocation" ,
8731
- cascade_backrefs = False ,
8732
- )
8733
- output_datasets = relationship (
8734
- "WorkflowInvocationOutputDatasetAssociation" , back_populates = "workflow_invocation" , cascade_backrefs = False
8735
- )
8736
- output_values = relationship (
8737
- "WorkflowInvocationOutputValue" , back_populates = "workflow_invocation" , cascade_backrefs = False
8738
8701
)
8702
+ output_datasets = relationship ("WorkflowInvocationOutputDatasetAssociation" , back_populates = "workflow_invocation" )
8703
+ output_values = relationship ("WorkflowInvocationOutputValue" , back_populates = "workflow_invocation" )
8739
8704
messages = relationship ("WorkflowInvocationMessage" , back_populates = "workflow_invocation" )
8740
8705
8741
8706
dict_collection_visible_keys = [
@@ -9422,12 +9387,10 @@ class WorkflowInvocationStep(Base, Dictifiable, Serializable):
9422
9387
output_dataset_collections = relationship (
9423
9388
"WorkflowInvocationStepOutputDatasetCollectionAssociation" ,
9424
9389
back_populates = "workflow_invocation_step" ,
9425
- cascade_backrefs = False ,
9426
9390
)
9427
9391
output_datasets = relationship (
9428
9392
"WorkflowInvocationStepOutputDatasetAssociation" ,
9429
9393
back_populates = "workflow_invocation_step" ,
9430
- cascade_backrefs = False ,
9431
9394
)
9432
9395
workflow_invocation : Mapped ["WorkflowInvocation" ] = relationship (back_populates = "steps" )
9433
9396
output_value = relationship (
@@ -10617,7 +10580,6 @@ class Visualization(Base, HasTags, Dictifiable, RepresentById, UsesCreateAndUpda
10617
10580
back_populates = "visualization" ,
10618
10581
cascade = "all, delete-orphan" ,
10619
10582
primaryjoin = (lambda : Visualization .id == VisualizationRevision .visualization_id ),
10620
- cascade_backrefs = False ,
10621
10583
)
10622
10584
latest_revision : Mapped [Optional ["VisualizationRevision" ]] = relationship (
10623
10585
post_update = True ,
@@ -11776,7 +11738,7 @@ def __repr__(self):
11776
11738
_metadata = deferred (HistoryDatasetAssociation .table .c ._metadata ),
11777
11739
dependent_jobs = relationship (JobToInputDatasetAssociation , back_populates = "dataset" ),
11778
11740
creating_job_associations = relationship (JobToOutputDatasetAssociation , back_populates = "dataset" ),
11779
- history = relationship (History , back_populates = "datasets" , cascade_backrefs = False ),
11741
+ history = relationship (History , back_populates = "datasets" ),
11780
11742
implicitly_converted_datasets = relationship (
11781
11743
ImplicitlyConvertedDatasetAssociation ,
11782
11744
primaryjoin = (lambda : ImplicitlyConvertedDatasetAssociation .hda_parent_id == HistoryDatasetAssociation .id ),
0 commit comments