Skip to content

Commit e1247bf

Browse files
committed
Fixed compliance
1 parent 608a3a5 commit e1247bf

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
@@ -2165,7 +2165,6 @@ def __ne__(self, other):
21652165
issue_branch_template: Mapped[str] = mapped_column(String, nullable=True)
21662166
marked_for_deletion_at: Mapped[datetime] = mapped_column(DateTime, nullable=True)
21672167
marked_for_deletion_on: Mapped[str] = mapped_column(String, nullable=True)
2168-
compliance_frameworks = mapped_column(ARRAY(String), nullable=True)
21692168
warn_about_potentially_unwanted_characters: Mapped[bool] = mapped_column(
21702169
Boolean, nullable=True
21712170
)
@@ -2317,6 +2316,9 @@ def __ne__(self, other):
23172316
deployables: Mapped[List["DeployableDBModel"]] = relationship(
23182317
back_populates="project"
23192318
)
2319+
compliance_frameworks: Mapped[List["ComplianceFrameworksDBModel"]] = relationship(
2320+
back_populates="project"
2321+
)
23202322

23212323

23222324
# Runner Model

0 commit comments

Comments
 (0)