tidy up some longs related stuff

This commit is contained in:
Ross
2024-07-08 13:14:11 +01:00
parent bcfcd8da82
commit 19a9a27747
11 changed files with 140 additions and 44 deletions
@@ -0,0 +1,22 @@
# Generated by Django 5.0.2 on 2024-07-08 11:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('longs', '0024_alter_exam_end_date_alter_exam_exam_results_emailed_and_more'),
]
operations = [
migrations.RemoveField(
model_name='answermarks',
name='candidate_feedback',
),
migrations.AddField(
model_name='useranswer',
name='candidate_feedback',
field=models.TextField(blank=True, help_text='Feedback for the candidate', null=True),
),
]