38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
# Generated by Django 3.1.5 on 2021-03-24 06:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ck', '0026_auto_20210318_1243'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='lesion',
|
|
name='calibration_table',
|
|
field=models.CharField(choices=[('GE', 'GE'), ('PHIA', 'Philips'), ('SIE', 'Siemens')], max_length=9, null=True, verbose_name='CT Calibration table'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='lesion',
|
|
name='density_correction',
|
|
field=models.BooleanField(null=True, verbose_name='影像密度修正'),
|
|
),
|
|
migrations.AlterField(
|
|
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='mu_max',
|
|
field=models.DecimalField(blank=True, decimal_places=2, max_digits=9, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='lesion',
|
|
name='mu_min',
|
|
field=models.DecimalField(blank=True, decimal_places=2, max_digits=9, null=True),
|
|
),
|
|
]
|