ck-ntuh-net/mysite/ck/migrations.bak/0009_treatment_icd10cm.py

20 lines
463 B
Python
Raw Normal View History

2024-12-11 08:15:42 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ck', '0008_remove_treatment_icd10cm'),
]
operations = [
migrations.AddField(
model_name='treatment',
name='icd10cm',
field=models.ForeignKey(verbose_name=b'ICD-10-CM', blank=True, to='ck.ICD10CMfinal', null=True),
),
]