Commit 769e1859 by Douglas Hall

Merge pull request #253 from edx/hasnain-naveed/PHX-225-migrations

PHX-225 / Migration
parents ff13e522 6558e6b7
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('edx_proctoring', '0002_proctoredexamstudentattempt_is_status_acknowledged'),
]
operations = [
migrations.AlterField(
model_name='proctoredexamstudentattempt',
name='is_sample_attempt',
field=models.BooleanField(default=False, verbose_name='Is Sample Attempt'),
),
migrations.AlterField(
model_name='proctoredexamstudentattempt',
name='taking_as_proctored',
field=models.BooleanField(default=False, verbose_name='Taking as Proctored'),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment