-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #555 from openhealthcare/meta-name-db-changes
adds verbose name migrations caused by our change from _title
- Loading branch information
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.8 on 2018-10-29 15:40 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('tb', '0034_auto_20180824_1925'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='tbmanagement', | ||
options={'verbose_name': 'TB Management'}, | ||
), | ||
migrations.AlterField( | ||
model_name='tbmanagement', | ||
name='ltbr_number', | ||
field=models.CharField(blank=True, max_length=200, null=True, verbose_name=b'LTBR Number'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.8 on 2018-10-29 15:40 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('elcid', '0025_merge_20180718_0817'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='finaldiagnosis', | ||
options={'verbose_name': 'Final Diagnosis', 'verbose_name_plural': 'Final Diagnoses'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='infection', | ||
options={'verbose_name': 'Infection Related Issues'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='microbiologyinput', | ||
options={'verbose_name': 'Clinical Advice', 'verbose_name_plural': 'Clinical Advice'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='pastmedicalhistory', | ||
options={'verbose_name': 'PMH', 'verbose_name_plural': 'Past medical histories'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='primarydiagnosis', | ||
options={'verbose_name': 'Primary Diagnosis', 'verbose_name_plural': 'Primary Diagnoses'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='procedure', | ||
options={'verbose_name': 'Operation / Procedures'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='referralroute', | ||
options={'verbose_name': 'Referral Route'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='symptomcomplex', | ||
options={'verbose_name': 'Symptoms', 'verbose_name_plural': 'Symptom complexes'}, | ||
), | ||
migrations.AlterField( | ||
model_name='referralroute', | ||
name='referral_type', | ||
field=models.CharField(blank=True, choices=[(b'Primary care (GP)', b'Primary care (GP)'), (b'Primary care (other)', b'Primary care (other)'), (b'Secondary care', b'Secondary care'), (b'TB service', b'TB service'), (b'A&E', b'A&E'), (b'Find & treat', b'Find & treat'), (b'Prison screening', b'Prison screening'), (b'Port Health/HPA', b'Port Health/HPA'), (b'Private', b'Private')], default=b'', max_length=256), | ||
), | ||
] |