Skip to content

Commit

Permalink
recreate migrations (#6685)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc authored May 20, 2020
1 parent a9fa4b3 commit b3446cd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -7,7 +7,7 @@
class Migration(migrations.Migration):

dependencies = [
('dashboard', '0108_auto_20200513_0353'),
('dashboard', '0111_auto_20200520_0457'),
]

operations = [
Expand Down
18 changes: 18 additions & 0 deletions app/quests/migrations/0027_auto_20200520_1454.py
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit b3446cd

Please sign in to comment.