fix(ingestion): stop fabricating missing player positions
This commit is contained in:
@ -42,7 +42,7 @@ class Player(models.Model):
|
||||
height_cm = models.DecimalField(max_digits=5, decimal_places=2, null=True, blank=True)
|
||||
weight_kg = models.DecimalField(max_digits=5, decimal_places=2, null=True, blank=True)
|
||||
wingspan_cm = models.DecimalField(max_digits=5, decimal_places=2, null=True, blank=True)
|
||||
position = models.CharField(max_length=2, choices=Position.choices)
|
||||
position = models.CharField(max_length=2, choices=Position.choices, null=True, blank=True)
|
||||
roles = models.ManyToManyField(Role, blank=True, related_name="players")
|
||||
specialties = models.ManyToManyField(Specialty, blank=True, related_name="players")
|
||||
created_at = models.DateTimeField(auto_now_add=True)
|
||||
|
||||
Reference in New Issue
Block a user