Commit 5fb241e3 by Ibrahim Committed by hasnain-naveed

added migration

parent 99244d01
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('edx_proctoring', '0003_auto_20160101_0525'),
]
operations = [
migrations.AlterField(
model_name='proctoredexamsoftwaresecurereview',
name='attempt_code',
field=models.CharField(unique=True, max_length=255, db_index=True),
),
]
...@@ -857,7 +857,7 @@ class ProctoredExamSoftwareSecureReview(TimeStampedModel): ...@@ -857,7 +857,7 @@ class ProctoredExamSoftwareSecureReview(TimeStampedModel):
""" """
# which student attempt is this feedback for? # which student attempt is this feedback for?
attempt_code = models.CharField(max_length=255, db_index=True) attempt_code = models.CharField(max_length=255, db_index=True, unique=True)
# overall status of the review # overall status of the review
review_status = models.CharField(max_length=255) review_status = models.CharField(max_length=255)
......
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