mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-23 19:20:47 +02:00
migrations for model changes
This commit is contained in:
parent
2c355353b6
commit
e11db7fbd3
1 changed files with 36 additions and 0 deletions
|
@ -0,0 +1,36 @@
|
||||||
|
# Generated by Django 4.2.7 on 2023-12-05 09:50
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("registrar", "0047_transitiondomain_address_line_transitiondomain_city_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="domainapplication",
|
||||||
|
name="current_websites",
|
||||||
|
field=models.ManyToManyField(
|
||||||
|
blank=True, related_name="current+", to="registrar.website", verbose_name="websites"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="domainapplication",
|
||||||
|
name="other_contacts",
|
||||||
|
field=models.ManyToManyField(
|
||||||
|
blank=True, related_name="contact_applications", to="registrar.contact", verbose_name="contacts"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="domaininformation",
|
||||||
|
name="other_contacts",
|
||||||
|
field=models.ManyToManyField(
|
||||||
|
blank=True,
|
||||||
|
related_name="contact_applications_information",
|
||||||
|
to="registrar.contact",
|
||||||
|
verbose_name="contacts",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue