Merge branch 'main' into za/1988-investigate-indexes

This commit is contained in:
zandercymatics 2024-05-28 08:37:20 -06:00
commit 6a393aad51
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
21 changed files with 734 additions and 6142 deletions

View file

@ -90,6 +90,17 @@ class User(AbstractUser):
help_text="Phone",
)
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,