correct typo in max_length
parent
d95637c8bf
commit
ed3e3ef008
|
|
@ -4,7 +4,7 @@ from django.db import models
|
|||
|
||||
class User(AbstractUser):
|
||||
display_name = models.CharField(
|
||||
max_lenth=200, help_test="Display name", blank=True, null=True
|
||||
max_length=200, help_test="Display name", blank=True, null=True
|
||||
)
|
||||
|
||||
def __str__(self):
|
||||
|
|
|
|||
Loading…
Reference in New Issue