Skip to content

Commit

Permalink
fix: added employee_mail field to employee model
Browse files Browse the repository at this point in the history
  • Loading branch information
avinogrado authored and the-homeless-god committed Aug 31, 2024
1 parent e232577 commit 2032571
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions application/backend/projects/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class Employee(models.Model):
first_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50)
is_deleted = models.BooleanField(default=False)
employee_email = models.CharField(max_length=50)

def __str__(self):
return self.first_name +" " + self.last_name
Expand Down

0 comments on commit 2032571

Please sign in to comment.