mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-19 10:59:21 +02:00
Add middle name and title
This commit is contained in:
parent
de2d3514eb
commit
ac545ef5aa
3 changed files with 38 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue