.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.10 on 2022-04-04 15:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('atlas', '0036_casecollection_exam_mode'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='cidreportanswer',
|
||||
name='feedback',
|
||||
field=models.TextField(blank=True),
|
||||
),
|
||||
]
|
||||
@@ -706,6 +706,8 @@ class CidReportAnswer(models.Model):
|
||||
help_text="Candidate ID",
|
||||
)
|
||||
|
||||
feedback = models.TextField(blank=True)
|
||||
|
||||
created = models.DateTimeField(auto_now_add=True)
|
||||
updated = models.DateTimeField(auto_now=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user