-
Notifications
You must be signed in to change notification settings - Fork 21
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 #2046 from cisagov/rh/2909-new-agency-field
ISSUE #2029: Add new model for new federal agency field
- Loading branch information
Showing
5 changed files
with
63 additions
and
2 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
36 changes: 36 additions & 0 deletions
36
src/registrar/migrations/0086_domaininformation_updated_federal_agency_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,36 @@ | ||
# Generated by Django 4.2.10 on 2024-04-18 22:45 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("registrar", "0085_alter_contact_first_name_alter_contact_last_name_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="domaininformation", | ||
name="updated_federal_agency", | ||
field=models.ForeignKey( | ||
blank=True, | ||
help_text="Associated federal agency", | ||
null=True, | ||
on_delete=django.db.models.deletion.PROTECT, | ||
to="registrar.federalagency", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="domainrequest", | ||
name="updated_federal_agency", | ||
field=models.ForeignKey( | ||
blank=True, | ||
help_text="Associated federal agency", | ||
null=True, | ||
on_delete=django.db.models.deletion.PROTECT, | ||
to="registrar.federalagency", | ||
), | ||
), | ||
] |
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
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
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