diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-06-30 17:01:23 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-06-30 17:01:23 +0200 |
commit | 9a2190528b3afaeefcf7f69b338ab852d9ad845c (patch) | |
tree | 0258275ee931d1b2aaa1e959168e241b2faa7837 /ishtar_common/models.py | |
parent | 47c81f3026c88230894a30d4cd0ab1de0043cc56 (diff) | |
parent | f64baa1026aaf79e62cd604ac94dc21382f07e5a (diff) | |
download | Ishtar-9a2190528b3afaeefcf7f69b338ab852d9ad845c.tar.bz2 Ishtar-9a2190528b3afaeefcf7f69b338ab852d9ad845c.zip |
Merge branch 'v0.9' into wheezy
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 59d1f9ebc..639e44af3 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3003,7 +3003,7 @@ post_delete.connect(post_save_cache, sender=Format) class Source(OwnPerms, ImageModel, models.Model): title = models.CharField(_(u"Title"), max_length=300) - external_id = models.CharField(_(u"External ID"), max_length=12, null=True, + external_id = models.TextField(_(u"External ID"), max_length=300, null=True, blank=True) source_type = models.ForeignKey(SourceType, verbose_name=_(u"Type")) support_type = models.ForeignKey(SupportType, verbose_name=_(u"Support"), |