Delete 0099_domainrequest_action_needed_reason.py

This commit is contained in:
zandercymatics 2024-06-12 08:45:46 -06:00
parent 4a57693fb0
commit bfe2f1730b
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -1,28 +0,0 @@
# Generated by Django 4.2.10 on 2024-06-07 15:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("registrar", "0098_alter_domainrequest_status"),
]
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,
),
),
]