-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: migration to remove redundant DIARY_NUMBER_RECEIVED ahjostatus * feat: add_ahjo_case_id and ahjo_case_guid to application
- Loading branch information
Showing
3 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
backend/benefit/applications/migrations/0045_alter_ahjostatus_status.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,39 @@ | ||
# Generated by Django 3.2.18 on 2023-10-31 10:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("applications", "0044_ahjostatus"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="ahjostatus", | ||
name="status", | ||
field=models.CharField( | ||
choices=[ | ||
( | ||
"submitted_but_not_sent_to_ahjo", | ||
"Submitted but not sent to AHJO", | ||
), | ||
( | ||
"request_to_open_case_sent", | ||
"Request to open the case sent to AHJO", | ||
), | ||
("case_opened", "Case opened in AHJO"), | ||
("update_request_sent", "Update request sent"), | ||
("update_request_received", "Update request received"), | ||
("decision_proposal_sent", "Decision proposal sent"), | ||
("decision_proposal_accepted", "Decision proposal accepted"), | ||
("decision_proposal_rejected", "Decision proposal rejected"), | ||
("delete_request_sent", "Delete request sent"), | ||
("delete_request_received", "Delete request received"), | ||
], | ||
default="submitted_but_not_sent_to_ahjo", | ||
max_length=64, | ||
verbose_name="status", | ||
), | ||
), | ||
] |
33 changes: 33 additions & 0 deletions
33
backend/benefit/applications/migrations/0046_add_ahjo_ids_to_application.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,33 @@ | ||
# Generated by Django 3.2.18 on 2023-10-31 10:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('applications', '0045_alter_ahjostatus_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='application', | ||
name='ahjo_case_guid', | ||
field=models.UUIDField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='application', | ||
name='ahjo_case_id', | ||
field=models.CharField(blank=True, max_length=64, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalapplication', | ||
name='ahjo_case_guid', | ||
field=models.UUIDField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='historicalapplication', | ||
name='ahjo_case_id', | ||
field=models.CharField(blank=True, max_length=64, null=True), | ||
), | ||
] |
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