36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Generated by Django 3.2.8 on 2021-12-14 17:45
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('atlas', '0021_rename_pathalogicalprocess_pathologicalprocess'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='case',
|
|
name='editor',
|
|
field=models.ManyToManyField(blank=True, related_name='atlas_edited_cases', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
migrations.AddField(
|
|
model_name='case',
|
|
name='report',
|
|
field=models.TextField(blank=True, help_text='A model (sample) report for the case.', null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='case',
|
|
name='author',
|
|
field=models.ManyToManyField(blank=True, help_text='Author of the case', related_name='atlas_authored_cases', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='case',
|
|
name='history',
|
|
field=models.TextField(blank=True, help_text='A (brief) summary of the relevant history', null=True),
|
|
),
|
|
]
|