Skip to content
0014_course_events_file.py 554 B
Newer Older
Andreas Klöckner's avatar
Andreas Klöckner committed
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0013_rename_time_label'),
    ]

    operations = [
        migrations.AddField(
            model_name='course',
            name='events_file',
            field=models.CharField(default=b'events.yml', help_text=b'Name of a YAML file in the git repository that contains calendar information.', max_length=200),
            preserve_default=True,
        ),
    ]