[HOTFIX] Fix last migrationm

remotes/origin/logger
David Barragán Merino 2015-11-03 12:06:52 +01:00
parent 26e4941c56
commit b7a752221f
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='notifypolicy',
name='notify_level',
field=models.SmallIntegerField(choices=[(<NotifyLevel.involved: 1>, 'Involved'), (<NotifyLevel.all: 2>, 'All'), (<NotifyLevel.none: 3>, 'None')]),
field=models.SmallIntegerField(choices=[(1, 'Involved'), (2, 'All'), (3, 'None')]),
),
]