mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-17 18:09:25 +02:00
Model corrections
This commit is contained in:
parent
7178832d74
commit
85f3234fcd
4 changed files with 183 additions and 190 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue