19 lines
484 B
Python
Executable file
19 lines
484 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ck', '0012_treatment_icd10cm'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='icd10cmfinal',
|
|
name='ICD10CM',
|
|
field=models.CharField(max_length=8, serialize=False, verbose_name='ICD10CM', primary_key=True, db_column='ICD-10-CM'),
|
|
),
|
|
]
|