From 37e6ee673659203060afb7bc0689b67fa35560f6 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 15 Mar 2018 10:01:02 +0100 Subject: Container - fix length for different character fields (refs #3993) - fix length for URLs field in sources -> 1000 (refs #3991) --- ishtar_common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ishtar_common/models.py') diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 327922943..b634d93d7 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2825,7 +2825,7 @@ class Source(OwnPerms, ImageModel, FullSearch): authors = models.ManyToManyField(Author, verbose_name=_(u"Authors"), related_name="%(class)s_related") associated_url = models.URLField( - blank=True, null=True, + blank=True, null=True, max_length=1000, verbose_name=_(u"Numerical ressource (web address)")) receipt_date = models.DateField(blank=True, null=True, verbose_name=_(u"Receipt date")) -- cgit v1.2.3