19 lines
490 B
Python
19 lines
490 B
Python
# Generated by Django 4.1.4 on 2023-07-03 12:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0003_alter_series_modality'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='casecollection',
|
|
name='self_review',
|
|
field=models.BooleanField(default=False, help_text='If true allows users self complete and review cases in a self directed way.'),
|
|
),
|
|
]
|