mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-06-29 07:43:32 +02:00
trick the sandbox by deleting a conflicting migration
This commit is contained in:
parent
7b13dd4b3a
commit
6709ac9ddb
2 changed files with 41 additions and 53 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Generated by Django 4.2.1 on 2023-09-27 18:53
|
# Generated by Django 4.2.1 on 2023-09-27 18:53
|
||||||
|
|
||||||
from django.db import migrations
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
@ -18,4 +18,44 @@ class Migration(migrations.Migration):
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="domainapplication",
|
||||||
|
name="organization_type",
|
||||||
|
field=models.CharField(
|
||||||
|
blank=True,
|
||||||
|
choices=[
|
||||||
|
("federal", "Federal"),
|
||||||
|
("interstate", "Interstate"),
|
||||||
|
("state_or_territory", "State or territory"),
|
||||||
|
("tribal", "Tribal"),
|
||||||
|
("county", "County"),
|
||||||
|
("city", "City"),
|
||||||
|
("special_district", "Special district"),
|
||||||
|
("school_district", "School district"),
|
||||||
|
],
|
||||||
|
help_text="Type of organization",
|
||||||
|
max_length=255,
|
||||||
|
null=True,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="domaininformation",
|
||||||
|
name="organization_type",
|
||||||
|
field=models.CharField(
|
||||||
|
blank=True,
|
||||||
|
choices=[
|
||||||
|
("federal", "Federal"),
|
||||||
|
("interstate", "Interstate"),
|
||||||
|
("state_or_territory", "State or territory"),
|
||||||
|
("tribal", "Tribal"),
|
||||||
|
("county", "County"),
|
||||||
|
("city", "City"),
|
||||||
|
("special_district", "Special district"),
|
||||||
|
("school_district", "School district"),
|
||||||
|
],
|
||||||
|
help_text="Type of Organization",
|
||||||
|
max_length=255,
|
||||||
|
null=True,
|
||||||
|
),
|
||||||
|
),
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
# Generated by Django 4.2.1 on 2023-10-12 19:30
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
dependencies = [
|
|
||||||
("registrar", "0037_create_groups_v01"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="domainapplication",
|
|
||||||
name="organization_type",
|
|
||||||
field=models.CharField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("federal", "Federal"),
|
|
||||||
("interstate", "Interstate"),
|
|
||||||
("state_or_territory", "State or territory"),
|
|
||||||
("tribal", "Tribal"),
|
|
||||||
("county", "County"),
|
|
||||||
("city", "City"),
|
|
||||||
("special_district", "Special district"),
|
|
||||||
("school_district", "School district"),
|
|
||||||
],
|
|
||||||
help_text="Type of organization",
|
|
||||||
max_length=255,
|
|
||||||
null=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="domaininformation",
|
|
||||||
name="organization_type",
|
|
||||||
field=models.CharField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("federal", "Federal"),
|
|
||||||
("interstate", "Interstate"),
|
|
||||||
("state_or_territory", "State or territory"),
|
|
||||||
("tribal", "Tribal"),
|
|
||||||
("county", "County"),
|
|
||||||
("city", "City"),
|
|
||||||
("special_district", "Special district"),
|
|
||||||
("school_district", "School district"),
|
|
||||||
],
|
|
||||||
help_text="Type of Organization",
|
|
||||||
max_length=255,
|
|
||||||
null=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
Loading…
Add table
Add a link
Reference in a new issue