X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/5af34c3a3d2d9394b2e74d51fb8492ac0073ee31..4d9246f843b4f4a8decda8078283457ad4c378ee:/contrib/shipherd/models.py diff --git a/contrib/shipherd/models.py b/contrib/shipherd/models.py index 2eacc89..8efc57a 100644 --- a/contrib/shipherd/models.py +++ b/contrib/shipherd/models.py @@ -169,7 +169,7 @@ class Navigation(Entity): objects = NavigationManager() node = models.ForeignKey(Node, related_name='navigation_set', help_text="Be available as navigation for this node.") - key = models.CharField(max_length=255, validators=[RegexValidator("\w+")], help_text="Must contain one or more alphanumeric characters or underscores.") + key = models.CharField(max_length=255, validators=[RegexValidator("\w+")], help_text="Must contain one or more alphanumeric characters or underscores.", db_index=True) depth = models.PositiveSmallIntegerField(default=DEFAULT_NAVIGATION_DEPTH, validators=[MinValueValidator(1)], help_text="Defines the maximum display depth of this navigation.") def __init__(self, *args, **kwargs):