Add replaces field which is apparently in the database, but not in
models.py which confuses South - Legacy-Id: 6658
This commit is contained in:
parent
4635c1ce0f
commit
422a20fe3d
|
@ -45,6 +45,7 @@ class IdSubmissionDetail(models.Model):
|
|||
invalid_version = models.IntegerField(null=True, blank=True)
|
||||
idnits_failed = models.IntegerField(null=True, blank=True)
|
||||
submission_hash = models.CharField(null=True, blank=True, max_length=255)
|
||||
replaces = models.CharField(null=True, blank=True, max_length=255)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s-%s" % (self.filename, self.revision)
|
||||
|
|
Loading…
Reference in a new issue