Skip to content

Commit

Permalink
Run allow duplicate entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed Sep 24, 2024
1 parent 81052a5 commit 1414748
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gitlab_api/gitlab_db_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1190,8 +1190,9 @@ def __ne__(self, other):
project_shared_with_groups = Table(
"project_shared_with_groups",
BaseDBModel.metadata,
Column("project_id", Integer, ForeignKey("projects.id"), primary_key=True),
Column("group_id", Integer, ForeignKey("groups.id"), primary_key=True),
Column("project_id", Integer, ForeignKey("projects.id")),
Column("group_id", Integer, ForeignKey("groups.id")),
Column("id", Integer, primary_key=True, autoincrement=True)
)


Expand Down

0 comments on commit 1414748

Please sign in to comment.