diff options
Diffstat (limited to 'website/migrations/0010_auto_20181005_0544.py')
-rw-r--r-- | website/migrations/0010_auto_20181005_0544.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/website/migrations/0010_auto_20181005_0544.py b/website/migrations/0010_auto_20181005_0544.py new file mode 100644 index 0000000..679f9dd --- /dev/null +++ b/website/migrations/0010_auto_20181005_0544.py @@ -0,0 +1,22 @@ +# Generated by Django 2.1 on 2018-10-05 05:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0009_auto_20181005_0538'), + ] + + operations = [ + migrations.RemoveField( + model_name='answerpaper', + name='attempted', + ), + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(help_text='Please follow the format YYYY-MM-DD as it is!'), + ), + ] |