diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2021-06-20 12:29:39 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2021-06-20 12:29:56 +0200 |
commit | 8cb645eb1125db9887360d32d9440a9ca8a1ae4d (patch) | |
tree | 5f2788f6e8cc91ec3ba9add930616132af707499 /client/migrations/0008_usercode_avs_number.py | |
parent | add rev to version and create document from non primary group (diff) | |
download | scout-subs-8cb645eb1125db9887360d32d9440a9ca8a1ae4d.tar.gz scout-subs-8cb645eb1125db9887360d32d9440a9ca8a1ae4d.zip |
add avs number to form
Diffstat (limited to 'client/migrations/0008_usercode_avs_number.py')
-rw-r--r-- | client/migrations/0008_usercode_avs_number.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/client/migrations/0008_usercode_avs_number.py b/client/migrations/0008_usercode_avs_number.py new file mode 100644 index 0000000..365aaad --- /dev/null +++ b/client/migrations/0008_usercode_avs_number.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.4 on 2021-06-20 10:10 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0007_personaldata_avs_number'), + ] + + operations = [ + migrations.AddField( + model_name='usercode', + name='avs_number', + field=models.CharField(default='', max_length=250), + ), + ] |