26 lines
838 B
Python
26 lines
838 B
Python
# Generated by Django 3.1.2 on 2020-11-23 16:19
|
|
|
|
import anatomy.models
|
|
import django.core.files.storage
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0003_auto_20201119_1941'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='exam',
|
|
name='recreate_json',
|
|
field=models.BooleanField(default=False, help_text='If the json cache needs updating'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='anatomyquestion',
|
|
name='image',
|
|
field=models.ImageField(storage=django.core.files.storage.FileSystemStorage(base_url='http://161.35.163.87//media/anatomy/', location='/home/ross/sites/rad/media//anatomy/'), upload_to=anatomy.models.image_directory_path),
|
|
),
|
|
]
|