Change notes -> domain_notes for domain

This commit is contained in:
zandercymatics 2024-01-24 15:43:48 -07:00
parent 29621a6184
commit a758bfe512
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
3 changed files with 4 additions and 4 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", "domain_notes"]},
),
)

View file

@ -1,4 +1,4 @@
# Generated by Django 4.2.7 on 2024-01-24 22:28
# Generated by Django 4.2.7 on 2024-01-24 22:41
from django.db import migrations, models
@ -11,7 +11,7 @@ class Migration(migrations.Migration):
operations = [
migrations.AddField(
model_name="domain",
name="notes",
name="domain_notes",
field=models.TextField(blank=True, help_text="Notes about this domain", null=True),
),
migrations.AddField(

View file

@ -992,7 +992,7 @@ class Domain(TimeStampedModel, DomainHelper):
help_text="The last time this domain moved into the READY state",
)
notes = models.TextField(
domain_notes = models.TextField(
null=True,
blank=True,
help_text="Notes about this domain",