1
0
Fork 0

Add index for finding all statuses in a thread

This commit is contained in:
Bart Schuurmans 2024-04-03 21:06:24 +02:00
parent 5082806b82
commit 5cfe7eca6f
2 changed files with 20 additions and 0 deletions

View file

@ -82,6 +82,7 @@ class Status(OrderedCollectionPageMixin, BookWyrmModel):
ordering = ("-published_date",)
indexes = [
models.Index(fields=["remote_id"]),
models.Index(fields=["thread_id"]),
]
def save(self, *args, **kwargs):