23 lines
691 B
Python
23 lines
691 B
Python
# Generated by Django 3.1.5 on 2021-03-18 04:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ck', '0025_lesion_collimator_type'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='lesion',
|
|
name='dmean',
|
|
field=models.DecimalField(decimal_places=2, max_digits=9, null=True, verbose_name='Mean. dose(cGy)'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='lesion',
|
|
name='collimator_type',
|
|
field=models.IntegerField(choices=[(10, 'fixed'), (20, 'Iris'), (30, 'MLC')], default=10, verbose_name='Collimator Type'),
|
|
),
|
|
]
|