Add fields

This commit is contained in:
zandercymatics 2024-06-26 09:37:47 -06:00
parent 0fecc199d0
commit 5d68031dce
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
4 changed files with 84 additions and 2 deletions

View file

@ -311,10 +311,19 @@ class DomainRequest(TimeStampedModel):
on_delete=models.PROTECT,
null=True,
blank=True,
related_name="DomainInformation_portfolio",
related_name="DomainRequest_portfolio",
help_text="Portfolio associated with this domain request",
)
sub_organization = models.ForeignKey(
"registrar.Suborganization",
on_delete=models.PROTECT,
null=True,
blank=True,
related_name="request_sub_organization",
help_text="The suborganization that this domain request is included under",
)
# This is the domain request user who created this domain request. The contact
# information that they gave is in the `submitter` field
creator = models.ForeignKey(