feat: support mixed teams in MVP ranking

This commit is contained in:
2025-05-23 22:01:08 +02:00
parent 105b3778e1
commit 05bdc5c44c
5 changed files with 45 additions and 21 deletions

View File

@@ -38,6 +38,7 @@ class Team(SQLModel, table=True):
name: str
location: str | None
country: str | None
mixed: bool = False
players: list["Player"] | None = Relationship(
back_populates="teams", link_model=PlayerTeamLink
)