Skip to content

Commit

Permalink
Aumenta a quantidade de caracteres do DOI.
Browse files Browse the repository at this point in the history
  • Loading branch information
gitnnolabs committed Jul 25, 2023
1 parent 588d8e2 commit ae58714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion article/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,10 +734,10 @@ class SourceArticle(models.Model):
_("Specific Id"), max_length=255, null=False, blank=False
)
year = models.CharField(_("Year"), max_length=10, null=True, blank=True)
doi = models.CharField(_("DOI"), max_length=255, null=True, blank=False)
is_paratext = models.BooleanField(
_("Paratext"), default=False, null=True, blank=True
)
doi = models.CharField(_("DOI"), max_length=255, null=True, blank=False)
updated = models.CharField(
_("Source updated date"), max_length=50, null=True, blank=False
)
Expand Down

0 comments on commit ae58714

Please sign in to comment.