diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-06-28 13:22:11 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-06-28 13:22:11 +0200 |
commit | 3a4a2cf0ef72f044f0ca1c42fb2714b362252753 (patch) | |
tree | 3fd8524aa62dc145d8f6c6ab92efe163ce0affb7 /ishtar_common/models.py | |
parent | de105c7148a1764dc8cdfc713dd1953ac821c9ae (diff) | |
download | Ishtar-3a4a2cf0ef72f044f0ca1c42fb2714b362252753.tar.bz2 Ishtar-3a4a2cf0ef72f044f0ca1c42fb2714b362252753.zip |
Sources: change external id type to TextField
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 989b86ce7..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=300, 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"), |