We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4946a3f commit af9a442Copy full SHA for af9a442
1 file changed
ietf/ipr/models.py
@@ -90,7 +90,7 @@ class IprDetail(models.Model):
90
# Patent Information fieldset
91
patents = models.TextField("Patent Applications", db_column="p_applications", max_length=255)
92
date_applied = models.CharField(max_length=255)
93
- country = models.CharField(max_length=100)
+ country = models.CharField(max_length=255)
94
notes = models.TextField("Additional notes", db_column="p_notes", blank=True)
95
is_pending = models.IntegerField("Unpublished Pending Patent Application", blank=True, null=True, choices=SELECT_CHOICES, db_column="selecttype")
96
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