Skip to content

Commit cb75c7d

Browse files
committed
Added a migration for the Nomination.share_nominator field.
- Legacy-Id: 10039
1 parent 2c2c6a8 commit cb75c7d

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('nomcom', '0002_auto_20150430_0909'),
11+
]
12+
13+
operations = [
14+
migrations.AddField(
15+
model_name='nomination',
16+
name='share_nominator',
17+
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'),
18+
preserve_default=True,
19+
),
20+
]

0 commit comments

Comments
 (0)