Add version number to Django problem so it's easier to understand what's going on in the future
- Legacy-Id: 3175
This commit is contained in:
parent
0e829f975d
commit
a13ef5d3c4
|
@ -124,7 +124,7 @@ class DocHistoryAuthor(models.Model):
|
|||
|
||||
class DocHistory(DocumentInfo):
|
||||
doc = models.ForeignKey(Document) # ID of the Document this relates to
|
||||
# Django won't let us define these in the base class, so we have
|
||||
# Django 1.2 won't let us define these in the base class, so we have
|
||||
# to repeat them
|
||||
related = models.ManyToManyField('DocAlias', through=RelatedDocHistory, blank=True)
|
||||
authors = models.ManyToManyField(Email, through=DocHistoryAuthor, blank=True)
|
||||
|
|
Loading…
Reference in a new issue