We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8a421b commit 5329c76Copy full SHA for 5329c76
1 file changed
users/models.py
@@ -83,7 +83,7 @@ class CustomUser(AbstractUser):
83
city = models.CharField(max_length=255, null=True, blank=True)
84
organization = models.CharField(max_length=255, null=True, blank=True)
85
speciality = models.CharField(max_length=255, null=True, blank=True)
86
- # default=null - it means that onboarding is completed
+ # contacts = models.JSONField(null=True, blank=True)
87
# fixme: mb replace to ChoiceField or FSMField(Finite State Machine)
88
onboarding_stage = models.PositiveSmallIntegerField(
89
null=True,
0 commit comments