mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-29 08:50:01 +02:00
removing unnecessary domain attributes
This commit is contained in:
parent
a6cfd343e8
commit
ba8901bf27
2 changed files with 24 additions and 15 deletions
|
@ -0,0 +1,24 @@
|
|||
# Generated by Django 4.2.1 on 2023-10-06 11:50
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("registrar", "0034_domain_dnssec_ds_confirmed_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name="domain",
|
||||
name="dnssec_ds_confirmed",
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name="domain",
|
||||
name="dnssec_enabled",
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name="domain",
|
||||
name="dnssec_key_confirmed",
|
||||
),
|
||||
]
|
|
@ -702,21 +702,6 @@ class Domain(TimeStampedModel, DomainHelper):
|
|||
help_text="Very basic info about the lifecycle of this domain object",
|
||||
)
|
||||
|
||||
dnssec_enabled = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Boolean indicating if dnssec is enabled",
|
||||
)
|
||||
|
||||
dnssec_ds_confirmed = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Boolean indicating if DS record adding is confirmed",
|
||||
)
|
||||
|
||||
dnssec_key_confirmed = models.BooleanField(
|
||||
default=False,
|
||||
help_text="Boolean indicating if Key record adding is confirmed",
|
||||
)
|
||||
|
||||
# ForeignKey on UserDomainRole creates a "permissions" member for
|
||||
# all of the user-roles that are in place for this domain
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue