Skip to content
0029_flowaccessexception_is_sticky.py 584 B
Newer Older
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0028_more_expiration_mode_changes'),
    ]

    operations = [
        migrations.AddField(
            model_name='flowaccessexception',
            name='is_sticky',
            field=models.BooleanField(default=False, help_text=b'Check if a flow started under this exception rule set should stay under this rule set until it is expired.'),
            preserve_default=True,
        ),
    ]