From 2ce2f8d067d3912a47a2d2085bef5262bdf2b531 Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Tue, 18 Oct 2016 10:37:03 +0000 Subject: [PATCH] Change default of ReviewerSettings.min_interval to null - if it's not specified for a reviewer, we don't take it into account - Legacy-Id: 12169 --- .../migrations/0003_auto_20161018_0254.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ietf/review/migrations/0003_auto_20161018_0254.py diff --git a/ietf/review/migrations/0003_auto_20161018_0254.py b/ietf/review/migrations/0003_auto_20161018_0254.py new file mode 100644 index 000000000..618b2b231 --- /dev/null +++ b/ietf/review/migrations/0003_auto_20161018_0254.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('review', '0002_auto_20161017_1218'), + ] + + operations = [ + migrations.AlterField( + model_name='reviewersettings', + name='min_interval', + field=models.IntegerField(blank=True, null=True, verbose_name=b'Can review at most', choices=[(7, b'Once per week'), (14, b'Once per fortnight'), (30, b'Once per month'), (61, b'Once per two months'), (91, b'Once per quarter')]), + preserve_default=True, + ), + ]