From af9a442ca2f4cc6b15e46267dc4c359ac2a651ec Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 3 Dec 2012 13:19:02 +0000 Subject: [PATCH] Made the IPR country field wider to accomodate IPR disclosures referencing many patent instances in many countries. - Legacy-Id: 5089 --- ietf/ipr/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/ipr/models.py b/ietf/ipr/models.py index 4bc43a001..65ec0d41d 100644 --- a/ietf/ipr/models.py +++ b/ietf/ipr/models.py @@ -90,7 +90,7 @@ class IprDetail(models.Model): # Patent Information fieldset patents = models.TextField("Patent Applications", db_column="p_applications", max_length=255) date_applied = models.CharField(max_length=255) - country = models.CharField(max_length=100) + country = models.CharField(max_length=255) notes = models.TextField("Additional notes", db_column="p_notes", blank=True) is_pending = models.IntegerField("Unpublished Pending Patent Application", blank=True, null=True, choices=SELECT_CHOICES, db_column="selecttype") applies_to_all = models.IntegerField("Applies to all IPR owned by Submitter", blank=True, null=True, choices=SELECT_CHOICES, db_column="selectowned")