[collector model] add prefix to name of index

This commit is contained in:
bronsen 2025-03-12 22:55:48 +01:00
parent 1e4d474e23
commit 67a4063a21

View file

@ -11,5 +11,5 @@ class Teile(models.Model):
models.UniqueConstraint(fields=["name"], name="unique_names"),
]
indexes = [
models.Index(fields=["modified"], name="modified"),
models.Index(fields=["modified"], name="idx_modified"),
]