Fixed incorrect type for max_length.
This commit is contained in:
parent
fddb0131d3
commit
3b60ffa334
|
@ -162,7 +162,7 @@ class NewsArticle(Article):
|
||||||
|
|
||||||
class ArticleTranslation(models.Model):
|
class ArticleTranslation(models.Model):
|
||||||
article = models.ForeignKey(Article)
|
article = models.ForeignKey(Article)
|
||||||
lang = models.CharField(max_length='2')
|
lang = models.CharField(max_length=2)
|
||||||
title = models.CharField(max_length=100)
|
title = models.CharField(max_length=100)
|
||||||
body = models.TextField()
|
body = models.TextField()
|
||||||
abstract = models.CharField(max_length=400, null=True)
|
abstract = models.CharField(max_length=400, null=True)
|
||||||
|
|
Loading…
Reference in New Issue