Skip to content

Commit 422a20f

Browse files
committed
Add replaces field which is apparently in the database, but not in
models.py which confuses South - Legacy-Id: 6658
1 parent 4635c1c commit 422a20f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

ietf/submit/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class IdSubmissionDetail(models.Model):
4545
invalid_version = models.IntegerField(null=True, blank=True)
4646
idnits_failed = models.IntegerField(null=True, blank=True)
4747
submission_hash = models.CharField(null=True, blank=True, max_length=255)
48+
replaces = models.CharField(null=True, blank=True, max_length=255)
4849

4950
def __unicode__(self):
5051
return u"%s-%s" % (self.filename, self.revision)

0 commit comments

Comments
 (0)