.
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user