diff options
Diffstat (limited to 'website/migrations/0005_auto_20181005_0408.py')
-rw-r--r-- | website/migrations/0005_auto_20181005_0408.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/website/migrations/0005_auto_20181005_0408.py b/website/migrations/0005_auto_20181005_0408.py new file mode 100644 index 0000000..04b52ef --- /dev/null +++ b/website/migrations/0005_auto_20181005_0408.py @@ -0,0 +1,23 @@ +# Generated by Django 2.1 on 2018-10-05 04:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0004_auto_20181004_1022'), + ] + + operations = [ + migrations.AddField( + model_name='question', + name='question_day', + field=models.DateField(null=True), + ), + migrations.AlterField( + model_name='question', + name='correct_answer', + field=models.CharField(help_text='please write it as written in the option above(CAPS applicable)', max_length=255), + ), + ] |