File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
FusionIIIT/applications/health_center Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class Constants:
3333 )
3434
3535class Doctor (models .Model ):
36- doctor_name = models .CharField (choices = Constants . NAME_OF_DOCTOR , max_length = 50 )
36+ doctor_name = models .CharField (max_length = 50 )
3737 doctor_phone = models .CharField (max_length = 15 )
3838 specialization = models .CharField (max_length = 100 )
3939 active = models .BooleanField (default = True )
@@ -42,7 +42,7 @@ def __str__(self):
4242 return self .doctor_name
4343
4444class Pathologist (models .Model ):
45- pathologist_name = models .CharField (choices = Constants . NAME_OF_PATHOLOGIST , max_length = 50 )
45+ pathologist_name = models .CharField (max_length = 50 )
4646 pathologist_phone = models .CharField (max_length = 15 )
4747 specialization = models .CharField (max_length = 100 )
4848 active = models .BooleanField (default = True )
You can’t perform that action at this time.
0 commit comments