diff --git a/app/dashboard/migrations/0109_auto_20200519_0226.py b/app/dashboard/migrations/0112_auto_20200520_1454.py similarity index 91% rename from app/dashboard/migrations/0109_auto_20200519_0226.py rename to app/dashboard/migrations/0112_auto_20200520_1454.py index af45ea4f45a..13602e97eda 100644 --- a/app/dashboard/migrations/0109_auto_20200519_0226.py +++ b/app/dashboard/migrations/0112_auto_20200520_1454.py @@ -1,4 +1,4 @@ -# Generated by Django 2.2.4 on 2020-05-19 02:26 +# Generated by Django 2.2.4 on 2020-05-20 14:54 from django.db import migrations, models import django.db.models.deletion @@ -7,7 +7,7 @@ class Migration(migrations.Migration): dependencies = [ - ('dashboard', '0108_auto_20200513_0353'), + ('dashboard', '0111_auto_20200520_0457'), ] operations = [ diff --git a/app/quests/migrations/0027_auto_20200520_1454.py b/app/quests/migrations/0027_auto_20200520_1454.py new file mode 100644 index 00000000000..bd1788a36a1 --- /dev/null +++ b/app/quests/migrations/0027_auto_20200520_1454.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.4 on 2020-05-20 14:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('quests', '0026_quest_admin_comments'), + ] + + operations = [ + migrations.AlterField( + model_name='quest', + name='background', + field=models.CharField(blank=True, choices=[('red', 'red'), ('green', 'green'), ('blue', 'blue'), ('back0', 'back0'), ('back1', 'back1'), ('back2', 'back2'), ('back3', 'back3'), ('back4', 'back4'), ('back5', 'back5'), ('back6', 'back6'), ('back7', 'back7'), ('back8', 'back8'), ('back9', 'back9'), ('back10', 'back10'), ('back11', 'back11'), ('back12', 'back12'), ('back13', 'back13'), ('back14', 'back14'), ('back15', 'back15'), ('back16', 'back16'), ('back17', 'back17'), ('back18', 'back18'), ('back19', 'back19'), ('back20', 'back20'), ('back21', 'back21'), ('back22', 'back22'), ('back23', 'back23'), ('back24', 'back24'), ('back25', 'back25'), ('back26', 'back26'), ('back27', 'back27'), ('back28', 'back28'), ('back29', 'back29'), ('back30', 'back30'), ('back31', 'back31'), ('back32', 'back32'), ('back33', 'back33'), ('back34', 'back34')], default='', max_length=100), + ), + ]