-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/706-add-blurred-vision-death-report' into develop
- Loading branch information
Showing
4 changed files
with
97 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
42 changes: 42 additions & 0 deletions
42
effect_ae/migrations/0017_deathreport_blurred_vision_and_more.py
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,42 @@ | ||
# Generated by Django 4.2.6 on 2023-11-01 12:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("effect_ae", "0016_alter_aefollowup_options_alter_aeinitial_options_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="deathreport", | ||
name="blurred_vision", | ||
field=models.CharField( | ||
choices=[ | ||
("Yes", "Yes"), | ||
("No", "No"), | ||
("unknown", "Unknown"), | ||
("N/A", "Not applicable"), | ||
], | ||
max_length=25, | ||
null=True, | ||
verbose_name="If YES, did they complain of blurred vision?", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldeathreport", | ||
name="blurred_vision", | ||
field=models.CharField( | ||
choices=[ | ||
("Yes", "Yes"), | ||
("No", "No"), | ||
("unknown", "Unknown"), | ||
("N/A", "Not applicable"), | ||
], | ||
max_length=25, | ||
null=True, | ||
verbose_name="If YES, did they complain of blurred vision?", | ||
), | ||
), | ||
] |
44 changes: 44 additions & 0 deletions
44
effect_ae/migrations/0018_alter_deathreport_blurred_vision_and_more.py
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,44 @@ | ||
# Generated by Django 4.2.6 on 2023-11-01 12:09 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("effect_ae", "0017_deathreport_blurred_vision_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="deathreport", | ||
name="blurred_vision", | ||
field=models.CharField( | ||
choices=[ | ||
("Yes", "Yes"), | ||
("No", "No"), | ||
("unknown", "Unknown"), | ||
("N/A", "Not applicable"), | ||
], | ||
default="N/A", | ||
max_length=25, | ||
null=True, | ||
verbose_name="If YES, did they complain of blurred vision?", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicaldeathreport", | ||
name="blurred_vision", | ||
field=models.CharField( | ||
choices=[ | ||
("Yes", "Yes"), | ||
("No", "No"), | ||
("unknown", "Unknown"), | ||
("N/A", "Not applicable"), | ||
], | ||
default="N/A", | ||
max_length=25, | ||
null=True, | ||
verbose_name="If YES, did they complain of blurred vision?", | ||
), | ||
), | ||
] |
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