.
This commit is contained in:
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.1.4 on 2024-01-10 23:24
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('anatomy', '0007_anatomyquestion_answer_help'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='anatomyquestion',
|
||||||
|
name='answer_help',
|
||||||
|
field=models.TextField(blank=True, default='', help_text='Helpful information for marking', null=True),
|
||||||
|
),
|
||||||
|
]
|
||||||
+1
-1
@@ -91,7 +91,7 @@ class AnatomyQuestion(QuestionBase):
|
|||||||
help_text="Short description of the image e.g. 'Sagittal CT Chest, Abdomen & Pelvis', will be displayed as the title.",
|
help_text="Short description of the image e.g. 'Sagittal CT Chest, Abdomen & Pelvis', will be displayed as the title.",
|
||||||
)
|
)
|
||||||
|
|
||||||
answer_help = models.TextField(default="", help_text="Helpful information for marking")
|
answer_help = models.TextField(default="", blank=True, null=True, help_text="Helpful information for marking")
|
||||||
|
|
||||||
examination = models.ForeignKey(
|
examination = models.ForeignKey(
|
||||||
Examination, on_delete=models.SET_NULL, null=True, blank=True
|
Examination, on_delete=models.SET_NULL, null=True, blank=True
|
||||||
|
|||||||
Reference in New Issue
Block a user