27 lines
845 B
Python
27 lines
845 B
Python
# Generated by Django 3.2.8 on 2021-11-25 22:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0003_rename_subpecialty_case_subspecialty'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Condition',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=255)),
|
|
('synonym', models.ManyToManyField(blank=True, related_name='_atlas_condition_synonym_+', to='atlas.Condition')),
|
|
],
|
|
),
|
|
migrations.AlterField(
|
|
model_name='case',
|
|
name='condition',
|
|
field=models.ManyToManyField(blank=True, to='atlas.Condition'),
|
|
),
|
|
]
|