# -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2019-11-06 18:38
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('news', '0005_auto_20180809_1224'),
    ]

    operations = [
        migrations.AlterField(
            model_name='newsitem',
            name='category',
            field=models.CharField(choices=[('s', 'Story'), ('a', 'Announcement'), ('e', 'Event'), ('u', 'Unique'), ('p', 'People'), ('k', 'Kiosk'), ('P', 'Profile'), ('A', 'Alumni')], help_text='Unique, People, and Kiosk have special roles on the landing page', max_length=1),
        ),
    ]
