Remove helper text

This commit is contained in:
zandercymatics 2024-10-02 08:17:29 -06:00
parent 0e7969f7c7
commit f67c4e0da2
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 36 additions and 2 deletions

View file

@ -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",
),
),
]

View file

@ -63,7 +63,6 @@ class DomainInformation(TimeStampedModel):
null=True, null=True,
blank=True, blank=True,
related_name="information_portfolio", related_name="information_portfolio",
help_text="If blank, domain is not associated with a portfolio.",
) )
sub_organization = models.ForeignKey( sub_organization = models.ForeignKey(

View file

@ -327,7 +327,6 @@ class DomainRequest(TimeStampedModel):
null=True, null=True,
blank=True, blank=True,
related_name="DomainRequest_portfolio", related_name="DomainRequest_portfolio",
help_text="If blank, request is not associated with a portfolio.",
) )
sub_organization = models.ForeignKey( sub_organization = models.ForeignKey(