mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-24 19:48:36 +02:00
domain information updated as well
This commit is contained in:
parent
25cc38ff71
commit
cad8edadf2
2 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
# Generated by Django 4.1.6 on 2023-05-31 17:07
|
# Generated by Django 4.1.6 on 2023-05-31 17:14
|
||||||
|
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
@ -16,4 +16,11 @@ class Migration(migrations.Migration):
|
||||||
blank=True, help_text="Street address line 2", null=True
|
blank=True, help_text="Street address line 2", null=True
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="domaininformation",
|
||||||
|
name="address_line2",
|
||||||
|
field=models.TextField(
|
||||||
|
blank=True, help_text="Street address line 2", null=True
|
||||||
|
),
|
||||||
|
),
|
||||||
]
|
]
|
|
@ -101,8 +101,7 @@ class DomainInformation(TimeStampedModel):
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="Street address",
|
help_text="Street address",
|
||||||
)
|
)
|
||||||
address_line2 = models.CharField(
|
address_line2 = models.TextField(
|
||||||
max_length=15,
|
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="Street address line 2",
|
help_text="Street address line 2",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue