diff --git a/atlas/migrations/0043_seriesdetail_feedback.py b/atlas/migrations/0043_seriesdetail_feedback.py new file mode 100644 index 00000000..40e73864 --- /dev/null +++ b/atlas/migrations/0043_seriesdetail_feedback.py @@ -0,0 +1,18 @@ +# 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.'), + ), + ] diff --git a/atlas/models.py b/atlas/models.py index 19fc7242..1b91d546 100644 --- a/atlas/models.py +++ b/atlas/models.py @@ -875,6 +875,8 @@ class SeriesDetail(models.Model): sort_order = models.IntegerField(default=1000) + feedback = models.BooleanField(default=False, help_text="Set to true if the series should only be shown for feedback purposes.") + class Meta: ordering = ("sort_order",)