licenceid limit to 50

tz
Raz 1 year ago
parent a38077b4be
commit d06a8cea43
  1. 2
      tournaments/models/player_registration.py

@ -7,7 +7,7 @@ class PlayerRegistration(models.Model):
team_registration = models.ForeignKey(TeamRegistration, on_delete=models.CASCADE)
first_name = models.CharField(max_length=50, blank=True)
last_name = models.CharField(max_length=50, blank=True)
licence_id = models.CharField(max_length=20, null=True, blank=True)
licence_id = models.CharField(max_length=50, null=True, blank=True)
rank = models.IntegerField(null=True, blank=True)
#has_paid = models.BooleanField(default=False)
#unranked = models.BooleanField(default=False)

Loading…
Cancel
Save