mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-04-19 17:36:53 +00:00
remove null true for mobile field
This commit is contained in:
parent
d44b2ad6af
commit
7c940c9dd2
@ -11,7 +11,7 @@ from django.utils import timezone
|
||||
class User(AbstractUser):
|
||||
email = models.EmailField(unique=True, blank=True, null=True)
|
||||
address = models.CharField(max_length=255, blank=True)
|
||||
mobile = models.CharField(max_length=255, blank=True, unique=True, null=True)
|
||||
mobile = models.CharField(max_length=255, blank=True, unique=True)
|
||||
designation = models.CharField(max_length=255, blank=True)
|
||||
acc_no = models.CharField(max_length=255, blank=True)
|
||||
id_card = models.CharField(max_length=255, blank=True)
|
||||
|
Loading…
x
Reference in New Issue
Block a user