Files
penracourses/anatomy/migrations/0067_alter_anatomyquestion_image.py
T
2022-11-14 14:25:24 +00:00

20 lines
675 B
Python

# Generated by Django 3.2.13 on 2022-11-14 09:44
import anatomy.models
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('anatomy', '0066_remove_exam_stats_graph'),
]
operations = [
migrations.AlterField(
model_name='anatomyquestion',
name='image',
field=models.ImageField(help_text="The image to use for the question. Ideally use use unmarked images and annotate (arrow) them on the test system. If you wish to reuse an image that is already uploaded 'clone' the question that contains it.", upload_to=anatomy.models.image_directory_path),
),
]