18 lines
366 B
Python
Executable file
18 lines
366 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ck', '0014_auto_20160114_0556'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='icd10cmfinal',
|
|
options={'managed': False},
|
|
),
|
|
]
|