From cb75c7d90899cf0b1e906e8a428ccb2d4ebd4512 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sun, 23 Aug 2015 09:15:20 +0000 Subject: [PATCH] Added a migration for the Nomination.share_nominator field. - Legacy-Id: 10039 --- .../0003_nomination_share_nominator.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ietf/nomcom/migrations/0003_nomination_share_nominator.py diff --git a/ietf/nomcom/migrations/0003_nomination_share_nominator.py b/ietf/nomcom/migrations/0003_nomination_share_nominator.py new file mode 100644 index 000000000..e37db7a96 --- /dev/null +++ b/ietf/nomcom/migrations/0003_nomination_share_nominator.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('nomcom', '0002_auto_20150430_0909'), + ] + + operations = [ + migrations.AddField( + model_name='nomination', + name='share_nominator', + field=models.BooleanField(default=False, help_text=b'Check this box to allow the NomCom to let the person you are nominating know that you were one of the people who nominated them. If you do not check this box, your name will be confidential and known only within NomCom.', verbose_name=b'Share nominator name with candidate'), + preserve_default=True, + ), + ]