Skip to content
0017_event_all_day.py 494 B
Newer Older
Andreas Klöckner's avatar
Andreas Klöckner committed
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0016_flowpagevisitgrade_graded_at_git_commit_sha'),
    ]

    operations = [
        migrations.AddField(
            model_name='event',
            name='all_day',
Dong Zhuang's avatar
Dong Zhuang committed
            field=models.BooleanField(default=False, help_text='Only affects the rendering in the class calendar, in that a start time is not shown'),
            preserve_default=True,
        ),
    ]