21 lines
606 B
Python
21 lines
606 B
Python
# Generated by Django 3.1.3 on 2021-02-09 22:39
|
|
|
|
import anatomy.models
|
|
import django.core.files.storage
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0028_auto_20210206_0905'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='anatomyquestion',
|
|
name='image',
|
|
field=models.ImageField(storage=django.core.files.storage.FileSystemStorage(base_url='/media/anatomy/', location='/home/ross/rad/media//anatomy/'), upload_to=anatomy.models.image_directory_path),
|
|
),
|
|
]
|