35 lines
1003 B
Python
35 lines
1003 B
Python
# Generated by Django 3.2.4 on 2021-11-28 14:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0005_condition_primary_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Subspecialty',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=255)),
|
|
],
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='case',
|
|
name='subspecialty',
|
|
),
|
|
migrations.AddField(
|
|
model_name='condition',
|
|
name='subspecialty',
|
|
field=models.ManyToManyField(blank=True, to='atlas.Subspecialty'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='case',
|
|
name='subspecialty',
|
|
field=models.ManyToManyField(blank=True, to='atlas.Subspecialty'),
|
|
),
|
|
]
|