feat: Add date started at organisation

See #33
This commit is contained in:
James Graham
2020-06-24 15:09:23 +01:00
parent 26bf55b4b4
commit ab37139429
4 changed files with 40 additions and 0 deletions

View File

@@ -172,6 +172,10 @@ class Person(models.Model):
blank=True,
null=True)
#: When did this person start at their current organisation?
organisation_started_date = models.DateField(
'Date started at this organisation', blank=False, null=True)
#: Job title this person holds within their organisation
job_title = models.CharField(max_length=255, blank=True, null=False)