Skip to content

Commit 13fa025

Browse files
committed
Fixed ciid
1 parent c4db4ee commit 13fa025

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gitlab_api/gitlab_db_models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)