Skip to content
0012_timelabel_end_time.py 460 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', '0011_flowsession_access_rules_id'),
    ]

    operations = [
        migrations.AddField(
            model_name='timelabel',
            name='end_time',
            field=models.DateTimeField(null=True, blank=True),
            preserve_default=True,
        ),
    ]