Migrations to change verbose names

This commit is contained in:
Neil Martinsen-Burrell 2023-05-22 12:35:47 -05:00
parent 4fdc1ae2cc
commit 8adda8d327
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184

View file

@ -0,0 +1,44 @@
# Generated by Django 4.2 on 2023-05-22 17:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("registrar", "0020_remove_domaininformation_security_email"),
]
operations = [
migrations.AlterField(
model_name="contact",
name="first_name",
field=models.TextField(
blank=True,
db_index=True,
help_text="First name",
null=True,
verbose_name="first name / given name",
),
),
migrations.AlterField(
model_name="contact",
name="last_name",
field=models.TextField(
blank=True,
db_index=True,
help_text="Last name",
null=True,
verbose_name="last name / family name",
),
),
migrations.AlterField(
model_name="contact",
name="title",
field=models.TextField(
blank=True,
help_text="Title",
null=True,
verbose_name="title or role in your organization",
),
),
]