datatracker/ietf/nomcom/migrations/0003_nomcom_show_accepted_nominees.py
Henrik Levkowetz 726fcbf27d Removed all __future__ imports.
- Legacy-Id: 17391
2020-03-05 23:53:42 +00:00

22 lines
591 B
Python

# Copyright The IETF Trust 2018-2020, All Rights Reserved
# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-09-26 11:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('nomcom', '0002_auto_20180918_0550'),
]
operations = [
migrations.AddField(
model_name='nomcom',
name='show_accepted_nominees',
field=models.BooleanField(default=True, help_text='Show accepted nominees on the public nomination page', verbose_name='Show accepted nominees'),
),
]