Skip to content

Commit

Permalink
Increase tn_priority max value to 9999999999
Browse files Browse the repository at this point in the history
  • Loading branch information
simensol committed Sep 20, 2024
1 parent 5663c5b commit 95a841d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion treenode/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class Meta(TreeNodeModel.Meta):

tn_priority = models.PositiveIntegerField(
default=0,
validators=[MinValueValidator(0), MaxValueValidator(9999)],
validators=[MinValueValidator(0), MaxValueValidator(9999999999)],
verbose_name=_("Priority"),
)

Expand Down

0 comments on commit 95a841d

Please sign in to comment.