Skip to content

Commit 9a293a9

Browse files
committed
[DOP-23620] Fix SQLAlchemy warning
1 parent 5dc699e commit 9a293a9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

syncmaster/db/models/group.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ class Group(Base, TimestampMixin):
7676
owner_id: Mapped[int] = mapped_column(ForeignKey("user.id", ondelete="CASCADE"), nullable=False, index=True)
7777

7878
owner: Mapped[User] = relationship(User)
79-
members: Mapped[list[User]] = relationship(User, secondary="user_group")
8079
queue: Mapped[Queue] = relationship(back_populates="group", cascade="all, delete-orphan")
8180

8281
search_vector: Mapped[str] = mapped_column(

0 commit comments

Comments
 (0)