mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-18 02:19:23 +02:00
Remove helper text
This commit is contained in:
parent
0e7969f7c7
commit
f67c4e0da2
3 changed files with 36 additions and 2 deletions
|
@ -0,0 +1,36 @@
|
|||
# Generated by Django 4.2.10 on 2024-10-02 14:17
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("registrar", "0130_create_groups_v17"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="domaininformation",
|
||||
name="portfolio",
|
||||
field=models.ForeignKey(
|
||||
blank=True,
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.PROTECT,
|
||||
related_name="information_portfolio",
|
||||
to="registrar.portfolio",
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="domainrequest",
|
||||
name="portfolio",
|
||||
field=models.ForeignKey(
|
||||
blank=True,
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.PROTECT,
|
||||
related_name="DomainRequest_portfolio",
|
||||
to="registrar.portfolio",
|
||||
),
|
||||
),
|
||||
]
|
|
@ -63,7 +63,6 @@ class DomainInformation(TimeStampedModel):
|
|||
null=True,
|
||||
blank=True,
|
||||
related_name="information_portfolio",
|
||||
help_text="If blank, domain is not associated with a portfolio.",
|
||||
)
|
||||
|
||||
sub_organization = models.ForeignKey(
|
||||
|
|
|
@ -327,7 +327,6 @@ class DomainRequest(TimeStampedModel):
|
|||
null=True,
|
||||
blank=True,
|
||||
related_name="DomainRequest_portfolio",
|
||||
help_text="If blank, request is not associated with a portfolio.",
|
||||
)
|
||||
|
||||
sub_organization = models.ForeignKey(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue