Model corrections

This commit is contained in:
CocoByte 2024-06-12 14:49:06 -06:00
parent 7178832d74
commit 85f3234fcd
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F
4 changed files with 183 additions and 190 deletions

View file

@ -286,6 +286,16 @@ class DomainRequest(TimeStampedModel):
null=True,
)
# portfolio
portfolio = models.OneToOneField(
"registrar.Portfolio",
on_delete=models.PROTECT,
null=True,
blank=True,
related_name="DomainInformation_portfolio",
help_text="Portfolio associated with this domain",
)
# 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(