diff options
Diffstat (limited to 'core/models/caves.py')
-rw-r--r-- | core/models/caves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/caves.py b/core/models/caves.py index e077055..9d98e22 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -88,7 +88,7 @@ class Cave(TroggleModel): url = models.CharField(max_length=300, blank=True, null=True, unique = True) class Meta: - # we do not enforce uniqueness at the db level as that causes confusing errors for users. + # we do not enforce uniqueness at the db level as that causes confusing errors for newbie maintainers # unique_together = (("area", "kataster_number"), ("area", "unofficial_number")) ordering = ("kataster_code", "unofficial_number") |