26 lines
698 B
Python
26 lines
698 B
Python
# Generated by Django 5.0.2 on 2024-10-09 20:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('oef', '0003_alter_formats_format'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Specialty',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=200)),
|
|
],
|
|
),
|
|
migrations.AddField(
|
|
model_name='formats',
|
|
name='specialties',
|
|
field=models.ManyToManyField(blank=True, to='oef.specialty'),
|
|
),
|
|
]
|