# Generated by Django 5.1.4 on 2025-04-28 15:04 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('atlas', '0068_alter_seriesfinding_description'), ] operations = [ migrations.AddField( model_name='caseprior', name='prior_visibility', field=models.CharField(choices=[('NO', 'None'), ('AL', 'Always'), ('RE', 'Review')], default='AL', help_text='Defines when the prior case is shown to the user', max_length=2), ), ]