mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-04 08:52:16 +02:00
Merge pull request #663 from cisagov/jon/594
changed Address line 2 from Char to TextField, Added Migrations Files.
This commit is contained in:
commit
e49e9e706b
3 changed files with 28 additions and 4 deletions
|
@ -0,0 +1,26 @@
|
|||
# Generated by Django 4.2.1 on 2023-06-02 17:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("registrar", "0025_remove_domain_unique_domain_name_in_registry_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="domainapplication",
|
||||
name="address_line2",
|
||||
field=models.TextField(
|
||||
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
|
||||
),
|
||||
),
|
||||
]
|
|
@ -343,8 +343,7 @@ class DomainApplication(TimeStampedModel):
|
|||
blank=True,
|
||||
help_text="Street address",
|
||||
)
|
||||
address_line2 = models.CharField(
|
||||
max_length=15,
|
||||
address_line2 = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
help_text="Street address line 2",
|
||||
|
|
|
@ -101,8 +101,7 @@ class DomainInformation(TimeStampedModel):
|
|||
blank=True,
|
||||
help_text="Street address",
|
||||
)
|
||||
address_line2 = models.CharField(
|
||||
max_length=15,
|
||||
address_line2 = models.TextField(
|
||||
null=True,
|
||||
blank=True,
|
||||
help_text="Street address line 2",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue