Skip to content
0027_flowsession_expiration_mode.py 582 B
Newer Older
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0026_gradingopportunity_shown_in_student_grade_book'),
    ]

    operations = [
        migrations.AddField(
            model_name='flowsession',
            name='expiration_mode',
            field=models.CharField(default=b'end', max_length=20, null=True, choices=[(b'end', b'End session'), (b'roll_over', b'Roll over to new rules')]),
            preserve_default=True,
        ),
    ]