aboutsummaryrefslogtreecommitdiffstats
path: root/client/models.py
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2021-06-20 12:29:39 +0200
committerAndrea Lepori <alepori@student.ethz.ch>2021-06-20 12:29:56 +0200
commit8cb645eb1125db9887360d32d9440a9ca8a1ae4d (patch)
tree5f2788f6e8cc91ec3ba9add930616132af707499 /client/models.py
parentadd rev to version and create document from non primary group (diff)
downloadscout-subs-8cb645eb1125db9887360d32d9440a9ca8a1ae4d.tar.gz
scout-subs-8cb645eb1125db9887360d32d9440a9ca8a1ae4d.zip
add avs number to form
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 d14a267..3d4e63d 100644
--- a/client/models.py
+++ b/client/models.py
@@ -33,6 +33,7 @@ class PersonalData(models.Model):
email = models.CharField(default="", max_length=250)
school = models.CharField(default="", max_length=250)
year = models.IntegerField(default=0)
+ avs_number = models.CharField(default="", max_length=250)
class MedicalData(models.Model):
@@ -111,3 +112,4 @@ class UserCode(models.Model):
phone = models.CharField(default="", max_length=250)
school = models.CharField(default="", max_length=250)
year = models.IntegerField(default=0)
+ avs_number = models.CharField(default="", max_length=250) \ No newline at end of file