Improve search quality, ORM efficiency, and filter consistency
This commit is contained in:
@ -63,8 +63,15 @@ class PlayerSeasonStats(models.Model):
|
||||
models.Index(fields=["points"]),
|
||||
models.Index(fields=["rebounds"]),
|
||||
models.Index(fields=["assists"]),
|
||||
models.Index(fields=["steals"]),
|
||||
models.Index(fields=["blocks"]),
|
||||
models.Index(fields=["turnovers"]),
|
||||
models.Index(fields=["fg_pct"]),
|
||||
models.Index(fields=["three_pct"]),
|
||||
models.Index(fields=["ft_pct"]),
|
||||
models.Index(fields=["usage_rate"]),
|
||||
models.Index(fields=["true_shooting_pct"]),
|
||||
models.Index(fields=["player_efficiency_rating"]),
|
||||
]
|
||||
|
||||
def __str__(self) -> str:
|
||||
|
||||
Reference in New Issue
Block a user