19 lines
501 B
Python
19 lines
501 B
Python
# Generated by Django 3.1.3 on 2020-12-06 11:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('anatomy', '0008_anatomyquestion_open_access'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='anatomyquestion',
|
|
name='image_annotations',
|
|
field=models.TextField(blank=True, help_text='Stores a JSON representation of annotations to be applied by cornerstonetools'),
|
|
),
|
|
]
|