From c82859e3831c6a67a446eff560decdae4073deff Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 28 Jun 2017 13:18:39 +0200 Subject: Sources: external_id max char from 12 to 300 --- ishtar_common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ishtar_common') diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 59d1f9ebc..989b86ce7 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.CharField(_(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"), -- cgit v1.2.3