Add middle name and title

This commit is contained in:
zandercymatics 2024-05-22 08:59:40 -06:00
parent de2d3514eb
commit ac545ef5aa
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 38 additions and 2 deletions

View file

@ -80,6 +80,17 @@ class User(AbstractUser):
db_index=True,
)
middle_name = models.CharField(
null=True,
blank=True,
)
title = models.CharField(
null=True,
blank=True,
verbose_name="title / role",
)
verification_type = models.CharField(
choices=VerificationTypeChoices.choices,
null=True,