# Generated by Django 1.10.2 on 2016-10-29 02:26 import django.core.validators import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('course', '0098_alter_flowaccessexceptionentry'), ] operations = [ migrations.AlterField( model_name='gradingopportunity', name='identifier', field=models.CharField(help_text='A symbolic name for this grade. lower_case_with_underscores, no spaces.', max_length=200, validators=[django.core.validators.RegexValidator('^(?P[-_a-zA-Z0-9]+)$', message="Identifier may only contain letters, numbers, and hypens ('-').")], verbose_name='Grading opportunity ID'), ), ]