Added a migration for the Nomination.share_nominator field.
- Legacy-Id: 10039
This commit is contained in:
parent
2c2c6a878a
commit
cb75c7d908
20
ietf/nomcom/migrations/0003_nomination_share_nominator.py
Normal file
20
ietf/nomcom/migrations/0003_nomination_share_nominator.py
Normal file
|
@ -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,
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue