Skip to content

Commit 0f31332

Browse files
authored
Merge pull request #150 from cmu-delphi/pre-development
Renamed Outpatient Visit -> Outpatient / ED
2 parents bafb2aa + 391400e commit 0f31332

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.10 on 2024-06-11 19:06
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('signals', '0018_geography_order_id'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='signal',
15+
name='severenity_pyramid_rungs',
16+
field=models.CharField(choices=[('population', 'Population'), ('infected', 'Infected'), ('symptomatic', 'Symptomatic'), ('outpatient_visit', 'Outpatient / ED'), ('ascertained', 'Ascertained (case)'), ('hospitalized', 'Hospitalized'), ('icu', 'ICU'), ('dead', 'Dead')], help_text='Severity Pyramid Rungs', max_length=128, null=True),
17+
),
18+
]

src/signals/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class SeverityPyramidRungsChoices(models.TextChoices):
6363
POPULATION = 'population', _('Population')
6464
INFECTED = 'infected', _('Infected')
6565
SYMPTOMATIC = 'symptomatic', _('Symptomatic')
66-
OUTPATIENT_VISIT = 'outpatient_visit', _('Outpatient visit')
66+
OUTPATIENT_VISIT = 'outpatient_visit', _('Outpatient / ED')
6767
ASCERTAINED = 'ascertained', _('Ascertained (case)')
6868
HOSPITALIZED = 'hospitalized', _('Hospitalized')
6969
ICU = 'icu', _('ICU')

0 commit comments

Comments
 (0)