diff options
Diffstat (limited to 'website/migrations/0006_auto_20181005_0412.py')
-rw-r--r-- | website/migrations/0006_auto_20181005_0412.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/website/migrations/0006_auto_20181005_0412.py b/website/migrations/0006_auto_20181005_0412.py new file mode 100644 index 0000000..e2e9dd9 --- /dev/null +++ b/website/migrations/0006_auto_20181005_0412.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1 on 2018-10-05 04:12 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('website', '0005_auto_20181005_0408'), + ] + + operations = [ + migrations.AlterField( + model_name='question', + name='question_day', + field=models.DateField(), + ), + ] |