diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-09-03 18:28:54 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-09-03 18:28:54 +0200 |
commit | e4f1aba7025e2752b6e1a0aeb9584044184ddefe (patch) | |
tree | 28d95c4212d4dce94db3579b0b3fad51013f2db7 /client/migrations/0004_auto_20200903_1828.py | |
parent | better wording, simpler approve page (diff) | |
download | scout-subs-e4f1aba7025e2752b6e1a0aeb9584044184ddefe.tar.gz scout-subs-e4f1aba7025e2752b6e1a0aeb9584044184ddefe.zip |
add missing field to personal data
Diffstat (limited to 'client/migrations/0004_auto_20200903_1828.py')
-rw-r--r-- | client/migrations/0004_auto_20200903_1828.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/client/migrations/0004_auto_20200903_1828.py b/client/migrations/0004_auto_20200903_1828.py new file mode 100644 index 0000000..4121ca5 --- /dev/null +++ b/client/migrations/0004_auto_20200903_1828.py @@ -0,0 +1,23 @@ +# Generated by Django 3.0.7 on 2020-09-03 16:28 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0003_auto_20200731_1035'), + ] + + operations = [ + migrations.AddField( + model_name='personaldata', + name='school', + field=models.CharField(default='', max_length=250), + ), + migrations.AddField( + model_name='personaldata', + name='year', + field=models.IntegerField(default=0), + ), + ] |