domain information updated as well

This commit is contained in:
Jon Roberts 2023-05-31 13:14:42 -04:00
parent 25cc38ff71
commit cad8edadf2
No known key found for this signature in database
GPG key ID: EED093582198B041
2 changed files with 9 additions and 3 deletions

View file

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

View file

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