19 lines
475 B
Python
19 lines
475 B
Python
# Generated by Django 4.1.4 on 2024-02-17 22:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('atlas', '0042_alter_case_series'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='seriesdetail',
|
|
name='feedback',
|
|
field=models.BooleanField(default=False, help_text='Set to true if the series should only be shown for feedback purposes.'),
|
|
),
|
|
]
|