Skip to content

Commit 171011b

Browse files
committed
Add investigation details field
1 parent f793348 commit 171011b

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2.5 on 2025-09-16 10:15
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('participants', '0025_alter_symptom_investigated_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='symptom',
15+
name='investigation_details',
16+
field=models.CharField(blank=True),
17+
),
18+
]

manage_breast_screening/participants/models/symptom.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class Symptom(BaseModel):
5252

5353
# Has the symptom been investigated already?
5454
investigated = models.BooleanField(null=False, default=False)
55+
investigation_details = models.CharField(blank=True, null=False)
5556

5657
# Onset information
5758
when_started = models.CharField(blank=True, null=False, choices=RelativeDateChoices)

0 commit comments

Comments
 (0)