Skip to content

Commit a98366f

Browse files
committed
Author order is not optional. (This will not affect the actual
database, but might as well make the models reflect desired reality) - Legacy-Id: 1155
1 parent 2baf428 commit a98366f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idtracker/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ class Admin:
660660
class IDAuthor(models.Model):
661661
document = models.ForeignKey(InternetDraft, db_column='id_document_tag', related_name='authors', edit_inline=models.TABULAR, raw_id_admin=True)
662662
person = models.ForeignKey(PersonOrOrgInfo, db_column='person_or_org_tag', raw_id_admin=True, core=True)
663-
author_order = models.IntegerField(null=True, blank=True)
663+
author_order = models.IntegerField()
664664
def __str__(self):
665665
return "%s authors %s" % ( self.person, self.document.filename )
666666
def email(self):

0 commit comments

Comments
 (0)