Skip to content

Commit

Permalink
add new field in employee profile model
Browse files Browse the repository at this point in the history
  • Loading branch information
Mubashir12392 committed Mar 15, 2023
1 parent 36730c9 commit 3cb338e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions employees/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class ChoicesEmployeeSkills(models.TextChoices):
skills = models.CharField(max_length=200, choices=ChoicesEmployeeSkills.choices)
education = models.CharField(max_length=100,choices=EDUCATION_CHOICES)
about = models.TextField(max_length=500)
location = models.CharField(max_length=30, default='Pakistan')
interest =models.CharField(max_length=100, choices=INTEREST_CHOICES)

def __str__(self):
Expand Down

0 comments on commit 3cb338e

Please sign in to comment.