mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-05-16 01:27:03 +02:00
Remove notes
This commit is contained in:
parent
3d703b2217
commit
bc7ba2f752
3 changed files with 2 additions and 13 deletions
|
@ -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"]},
|
||||
),
|
||||
)
|
||||
|
||||
|
|
|
@ -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",
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue