Remove notes

This commit is contained in:
zandercymatics 2024-01-26 13:10:47 -07:00
parent 3d703b2217
commit bc7ba2f752
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 2 additions and 13 deletions

View file

@ -994,7 +994,7 @@ class DomainAdmin(ListHeaderAdmin):
fieldsets = (
(
None,
{"fields": ["name", "state", "expiration_date", "first_ready", "deleted", "notes"]},
{"fields": ["name", "state", "expiration_date", "first_ready", "deleted"]},
),
)

View file

@ -1,4 +1,4 @@
# Generated by Django 4.2.7 on 2024-01-25 20:48
# Generated by Django 4.2.7 on 2024-01-26 20:09
from django.db import migrations, models
@ -9,11 +9,6 @@ class Migration(migrations.Migration):
]
operations = [
migrations.AddField(
model_name="domain",
name="notes",
field=models.TextField(blank=True, help_text="Notes about this domain", null=True),
),
migrations.AddField(
model_name="domainapplication",
name="notes",

View file

@ -992,12 +992,6 @@ class Domain(TimeStampedModel, DomainHelper):
help_text="The last time this domain moved into the READY state",
)
notes = models.TextField(
null=True,
blank=True,
help_text="Notes about this domain",
)
def isActive(self):
return self.state == Domain.State.CREATED