Skip to content
0054_add_auditor_role.py 1010 B
Newer Older
from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('course', '0053_permission_and_help'),
    ]

    operations = [
        migrations.AlterField(
            model_name='participation',
            name='role',
Dong Zhuang's avatar
Dong Zhuang committed
            field=models.CharField(help_text='Instructors may update course content. Teaching assistants may access and change grade data. Observers may access analytics. Each role includes privileges from subsequent roles.', max_length=50, choices=[(b'instructor', b'Instructor'), (b'ta', b'Teaching Assistant'), (b'student', b'Student'), (b'observer', b'Observer'), (b'auditor', b'Auditor')]),
        ),
        migrations.AlterField(
            model_name='participationpreapproval',
            name='role',
            field=models.CharField(max_length=50, choices=[(b'instructor', b'Instructor'), (b'ta', b'Teaching Assistant'), (b'student', b'Student'), (b'observer', b'Observer'), (b'auditor', b'Auditor')]),
        ),
    ]