Add timestamp to comments on HR applications, removed useless 'App ID' field from HR overview

This commit is contained in:
Adam Trager
2016-01-06 17:35:34 -05:00
parent 4fa764e301
commit c17fdb2b7a
3 changed files with 3 additions and 4 deletions

View File

@@ -27,6 +27,7 @@ class HRApplication(models.Model):
class HRApplicationComment(models.Model):
created_on = models.DateTimeField(auto_now_add=True)
comment = models.CharField(max_length=254, default="")
application = models.ForeignKey(HRApplication)
commenter_user = models.ForeignKey(User)