From 628f7bde6e8d65d9ff6c47f9ef64edf67927cd38 Mon Sep 17 00:00:00 2001 From: Klaas van Schelven Date: Mon, 17 Nov 2025 14:47:11 +0100 Subject: [PATCH] Comment about TagValue counts See #272 --- tags/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tags/models.py b/tags/models.py index 863661d..0389b03 100644 --- a/tags/models.py +++ b/tags/models.py @@ -62,6 +62,7 @@ class TagValue(models.Model): project = models.ForeignKey(Project, blank=False, null=False, on_delete=models.DO_NOTHING) key = models.ForeignKey(TagKey, blank=False, null=False, on_delete=models.DO_NOTHING) value = models.CharField(max_length=200, blank=False, null=False, db_index=True) + # count = ... see https://github.com/bugsink/bugsink/issues/272 class Meta: # This is the obvious constraint, which doubles as a lookup index for