From e4f1aba7025e2752b6e1a0aeb9584044184ddefe Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Thu, 3 Sep 2020 18:28:54 +0200 Subject: add missing field to personal data --- client/migrations/0004_auto_20200903_1828.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 client/migrations/0004_auto_20200903_1828.py (limited to 'client/migrations') 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), + ), + ] -- cgit v1.2.1