diff --git a/tournaments/models/player_registration.py b/tournaments/models/player_registration.py index 6b10736..b35badb 100644 --- a/tournaments/models/player_registration.py +++ b/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)