24 lines
706 B
Python
24 lines
706 B
Python
# Generated by Django 3.2.8 on 2021-12-06 22:31
|
|
|
|
import atlas.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0016_auto_20211206_2224'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Presentation',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=255, unique=True)),
|
|
('subspecialty', models.ManyToManyField(blank=True, to='atlas.Subspecialty')),
|
|
],
|
|
bases=(atlas.models.SynMixin, models.Model),
|
|
),
|
|
]
|