# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('course', '0043_add_notify_email'), ] operations = [ migrations.AlterField( model_name='course', name='notify_email', field=models.EmailField(help_text=b'This email address will receive notifications about the course.', max_length=75), preserve_default=True, ), ]