mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-27 21:16:28 +02:00
Change suborganization name help text
This commit is contained in:
parent
2995792375
commit
b48802e0d7
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
# Generated by Django 4.2.10 on 2024-06-20 21:18
|
# Generated by Django 4.2.10 on 2024-06-20 21:21
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
import django.db.models.deletion
|
import django.db.models.deletion
|
||||||
|
@ -17,7 +17,7 @@ class Migration(migrations.Migration):
|
||||||
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
|
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
|
||||||
("created_at", models.DateTimeField(auto_now_add=True)),
|
("created_at", models.DateTimeField(auto_now_add=True)),
|
||||||
("updated_at", models.DateTimeField(auto_now=True)),
|
("updated_at", models.DateTimeField(auto_now=True)),
|
||||||
("name", models.CharField(blank=True, help_text="Domain group", null=True, unique=True)),
|
("name", models.CharField(blank=True, help_text="Suborganization", null=True, unique=True)),
|
||||||
("portfolio", models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to="registrar.portfolio")),
|
("portfolio", models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to="registrar.portfolio")),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
|
|
@ -11,7 +11,7 @@ class Suborganization(TimeStampedModel):
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
unique=True,
|
unique=True,
|
||||||
help_text="Domain group",
|
help_text="Suborganization",
|
||||||
)
|
)
|
||||||
|
|
||||||
portfolio = models.ForeignKey(
|
portfolio = models.ForeignKey(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue