mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-21 18:25:58 +02:00
more fixes (works locally)
This commit is contained in:
parent
d83bd361cb
commit
5d41eae801
2 changed files with 5 additions and 4 deletions
|
@ -12,11 +12,12 @@ class Migration(migrations.Migration):
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.RemoveField(
|
migrations.RenameField(
|
||||||
model_name="domaininformation",
|
model_name="domaininformation",
|
||||||
name="domain_application",
|
old_name="domain_application",
|
||||||
|
new_name="domain_request",
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AlterField(
|
||||||
model_name="domaininformation",
|
model_name="domaininformation",
|
||||||
name="domain_request",
|
name="domain_request",
|
||||||
field=models.OneToOneField(
|
field=models.OneToOneField(
|
|
@ -25,7 +25,7 @@ def create_groups(apps, schema_editor) -> Any:
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
dependencies = [
|
dependencies = [
|
||||||
("registrar", "0074_remove_domaininformation_domain_application_and_more"),
|
("registrar", "0074_rename_domaininformation_domain_application_and_more"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue