19 lines
419 B
Python
19 lines
419 B
Python
# Generated by Django 3.2.8 on 2021-12-07 11:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0018_alter_presentation_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='case',
|
|
name='presentation',
|
|
field=models.ManyToManyField(blank=True, to='atlas.Presentation'),
|
|
),
|
|
]
|