19 lines
500 B
Python
19 lines
500 B
Python
# Generated by Django 4.1.4 on 2023-11-01 22:44
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0024_uncategoriseddicom_created_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='case',
|
|
name='diagnostic_certainty',
|
|
field=models.IntegerField(choices=[(0, 'None'), (1, 'Possible'), (2, 'Likely'), (3, 'Almost Certain'), (4, 'Certain')], default=0),
|
|
),
|
|
]
|