23 lines
541 B
Python
23 lines
541 B
Python
# Generated by Django 5.0.2 on 2024-10-14 15:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0062_alter_casecollection_markers'),
|
|
('oef', '0005_entry_inactive'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='Specialty',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='formats',
|
|
name='specialties',
|
|
field=models.ManyToManyField(blank=True, to='atlas.subspecialty'),
|
|
),
|
|
]
|