Skip to content
0044_require_notify_email.py 453 B
Newer Older
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',
Dong Zhuang's avatar
Dong Zhuang committed
            field=models.EmailField(help_text='This email address will receive notifications about the course.', max_length=75),
            preserve_default=True,
        ),
    ]