-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mgiration file that should have been in 2572.
- Loading branch information
1 parent
d480d30
commit d51c545
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
backend/audit/migrations/0005_alter_submissionevent_event.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,59 @@ | ||
# Generated by Django 4.2.6 on 2023-10-24 18:58 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("audit", "0004_alter_singleauditchecklist_cognizant_agency_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="submissionevent", | ||
name="event", | ||
field=models.CharField( | ||
choices=[ | ||
("access-granted", "Access granted"), | ||
("additional-eins-updated", "Additional EINs updated"), | ||
("additional-ueis-updated", "Additional UEIs updated"), | ||
("audit-information-updated", "Audit information updated"), | ||
("audit-report-pdf-updated", "Audit report PDF updated"), | ||
( | ||
"auditee-certification-completed", | ||
"Auditee certification completed", | ||
), | ||
( | ||
"auditor-certification-completed", | ||
"Auditor certification completed", | ||
), | ||
( | ||
"corrective-action-plan-updated", | ||
"Corrective action plan updated", | ||
), | ||
("created", "Created"), | ||
("federal-awards-updated", "Federal awards updated"), | ||
( | ||
"federal-awards-audit-findings-updated", | ||
"Federal awards audit findings updated", | ||
), | ||
( | ||
"federal-awards-audit-findings-text-updated", | ||
"Federal awards audit findings text updated", | ||
), | ||
( | ||
"findings-uniform-guidance-updated", | ||
"Findings uniform guidance updated", | ||
), | ||
("general-information-updated", "General information updated"), | ||
("locked-for-certification", "Locked for certification"), | ||
("unlocked-after-certification", "Unlocked after certification"), | ||
("notes-to-sefa-updated", "Notes to SEFA updated"), | ||
("secondary-auditors-updated", "Secondary auditors updated"), | ||
("submitted", "Submitted to the FAC for processing"), | ||
("disseminated", "Copied to dissemination tables"), | ||
("tribal-consent-updated", "Tribal audit consent updated"), | ||
] | ||
), | ||
), | ||
] |