Skip to content

Commit 3044d10

Browse files
chore: remove country from RfcAuthor
Not planning to track this
1 parent 59cd7ea commit 3044d10

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

ietf/doc/migrations/0027_rfcauthor.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,6 @@ class Migration(migrations.Migration):
3535
max_length=100,
3636
),
3737
),
38-
(
39-
"country",
40-
models.CharField(
41-
blank=True,
42-
help_text="Country used by author for submission",
43-
max_length=255,
44-
),
45-
),
4638
("order", models.IntegerField(default=1)),
4739
(
4840
"document",

ietf/doc/models.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ class RfcAuthor(models.Model):
878878
"""Captures the authors of an RFC as represented on the RFC title page.
879879
880880
This deviates from DocumentAuthor in that it does not get moved into the DocHistory
881-
hierarchy as documents are saved. It will attempt to preserve email, country, and affiliation
881+
hierarchy as documents are saved. It will attempt to preserve email and affiliation
882882
from the DocumentAuthor objects associated with the draft leading to this RFC (which
883883
may be wrong if the author moves or changes affiliation while the document is in the
884884
queue).
@@ -897,7 +897,6 @@ class RfcAuthor(models.Model):
897897
person = ForeignKey(Person, null=True, on_delete=models.PROTECT)
898898
email = ForeignKey(Email, help_text="Email address used by author for submission", blank=True, null=True, on_delete=models.PROTECT)
899899
affiliation = models.CharField(max_length=100, blank=True, help_text="Organization/company used by author for submission")
900-
country = models.CharField(max_length=255, blank=True, help_text="Country used by author for submission")
901900
order = models.IntegerField(default=1)
902901

903902
def __str__(self):

0 commit comments

Comments
 (0)