aboutsummaryrefslogtreecommitdiffstats
path: root/client/models.py
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2020-09-03 18:28:54 +0200
committerAndrea Lepori <alepori@student.ethz.ch>2020-09-03 18:28:54 +0200
commite4f1aba7025e2752b6e1a0aeb9584044184ddefe (patch)
tree28d95c4212d4dce94db3579b0b3fad51013f2db7 /client/models.py
parentbetter wording, simpler approve page (diff)
downloadscout-subs-e4f1aba7025e2752b6e1a0aeb9584044184ddefe.tar.gz
scout-subs-e4f1aba7025e2752b6e1a0aeb9584044184ddefe.zip
add missing field to personal data
Diffstat (limited to 'client/models.py')
-rw-r--r--client/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/models.py b/client/models.py
index dd5d998..c85ca14 100644
--- a/client/models.py
+++ b/client/models.py
@@ -29,6 +29,8 @@ class PersonalData(models.Model):
home_phone = models.CharField(default="", max_length=250)
phone = models.CharField(default="", max_length=250)
email = models.CharField(default="", max_length=250)
+ school = models.CharField(default="", max_length=250)
+ year = models.IntegerField(default=0)
class MedicalData(models.Model):