add migration

This commit is contained in:
zandercymatics 2024-10-01 09:32:25 -06:00
parent 62156ac176
commit 162369f5db
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -0,0 +1,30 @@
# Generated by Django 4.2.10 on 2024-10-01 15:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("registrar", "0129_domainrequest_rejection_reason_email"),
]
operations = [
migrations.AlterField(
model_name="domainrequest",
name="rejection_reason",
field=models.TextField(
blank=True,
choices=[
("domain_purpose", "Purpose requirements not met"),
("requestor_not_eligible", "Requestor not eligible to make request"),
("org_has_domain", "Org already has a .gov domain"),
("contacts_not_verified", "Org contacts couldn't be verified"),
("org_not_eligible", "Org not eligible for a .gov domain"),
("naming_requirements", "Naming requirements not met"),
("other", "Other/Unspecified"),
],
null=True,
),
),
]