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 @@ -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
You can’t perform that action at this time.
0 commit comments