Add back migration

This commit is contained in:
zandercymatics 2024-06-12 08:46:18 -06:00
parent d574404788
commit 29e4c2b3ee
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -0,0 +1,28 @@
# Generated by Django 4.2.10 on 2024-06-12 14:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("registrar", "0099_federalagency_federal_type"),
]
operations = [
migrations.AddField(
model_name="domainrequest",
name="action_needed_reason",
field=models.TextField(
blank=True,
choices=[
("eligibility_unclear", "Unclear organization eligibility"),
("questionable_authorizing_official", "Questionable authorizing official"),
("already_has_domains", "Already has domains"),
("bad_name", "Doesnt meet naming requirements"),
("other", "Other (no auto-email sent)"),
],
null=True,
),
),
]