Skip to content

Commit

Permalink
Merge pull request #11 from pratham534/os-2
Browse files Browse the repository at this point in the history
changes related to apis
  • Loading branch information
prabhatsuman committed Apr 23, 2024
2 parents ceee427 + cd503a4 commit 10c8142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FusionIIIT/applications/health_center/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Constants:
)

class Doctor(models.Model):
doctor_name = models.CharField(choices=Constants.NAME_OF_DOCTOR, max_length=50)
doctor_name = models.CharField(max_length=50)
doctor_phone = models.CharField(max_length=15)
specialization = models.CharField(max_length=100)
active = models.BooleanField(default=True)
Expand All @@ -42,7 +42,7 @@ def __str__(self):
return self.doctor_name

class Pathologist(models.Model):
pathologist_name = models.CharField(choices=Constants.NAME_OF_PATHOLOGIST, max_length=50)
pathologist_name = models.CharField(max_length=50)
pathologist_phone = models.CharField(max_length=15)
specialization = models.CharField(max_length=100)
active = models.BooleanField(default=True)
Expand Down

0 comments on commit 10c8142

Please sign in to comment.