add future relations to cases in collection

This commit is contained in:
Ross
2026-06-12 21:15:43 +01:00
parent 6bb9441748
commit 96d5fa4a2e
6 changed files with 244 additions and 20 deletions
@@ -0,0 +1,18 @@
# Generated by Django 6.0.1 on 2026-06-11 20:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('atlas', '0106_casedetail_learner_comment_and_more'),
]
operations = [
migrations.AddField(
model_name='caseprior',
name='relation_type',
field=models.CharField(choices=[('PR', 'Prior'), ('FU', 'Future')], default='PR', help_text='Defines whether the related case is a prior or a future exam', max_length=2),
),
]