Skip to content

Commit af9a442

Browse files
committed
Made the IPR country field wider to accomodate IPR disclosures referencing many patent instances in many countries.
- Legacy-Id: 5089
1 parent 4946a3f commit af9a442

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class IprDetail(models.Model):
9090
# Patent Information fieldset
9191
patents = models.TextField("Patent Applications", db_column="p_applications", max_length=255)
9292
date_applied = models.CharField(max_length=255)
93-
country = models.CharField(max_length=100)
93+
country = models.CharField(max_length=255)
9494
notes = models.TextField("Additional notes", db_column="p_notes", blank=True)
9595
is_pending = models.IntegerField("Unpublished Pending Patent Application", blank=True, null=True, choices=SELECT_CHOICES, db_column="selecttype")
9696
applies_to_all = models.IntegerField("Applies to all IPR owned by Submitter", blank=True, null=True, choices=SELECT_CHOICES, db_column="selectowned")

0 commit comments

Comments
 (0)