File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -2104,7 +2104,6 @@ def __ne__(self, other):
21042104 ci_allow_fork_pipelines_to_run_in_parent_project : Mapped [bool ] = mapped_column (
21052105 Boolean , nullable = True
21062106 )
2107- ci_id_token_sub_claim_components = mapped_column (ARRAY (String ), nullable = True )
21082107 ci_separated_caches : Mapped [bool ] = mapped_column (Boolean , nullable = True )
21092108 ci_restrict_pipeline_cancellation_role : Mapped [str ] = mapped_column (
21102109 String , nullable = True
@@ -2319,6 +2318,9 @@ def __ne__(self, other):
23192318 compliance_frameworks : Mapped [List ["ComplianceFrameworksDBModel" ]] = relationship (
23202319 back_populates = "project"
23212320 )
2321+ ci_id_token_sub_claim_components : Mapped [List ["CIIDTokenComponentsDBModel" ]] = relationship (
2322+ back_populates = "project"
2323+ )
23222324
23232325
23242326# Runner Model
You can’t perform that action at this time.
0 commit comments