summaryrefslogtreecommitdiffstats
path: root/activities/models
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-28 21:47:31 -0700
committerAndrew Godwin2022-11-28 21:47:31 -0700
commit1ad9bfcb06aec3678c345fd97103f2c73396cd44 (patch)
tree68677716d58fb403a287d43392e4aaa4501d6e69 /activities/models
parentfb8f2d10984bcfa2585dc272b4c85d285b722792 (diff)
downloadtakahe-1ad9bfcb06aec3678c345fd97103f2c73396cd44.tar.gz
takahe-1ad9bfcb06aec3678c345fd97103f2c73396cd44.tar.bz2
takahe-1ad9bfcb06aec3678c345fd97103f2c73396cd44.zip
Add GIN index to Post.hashtags
Diffstat (limited to 'activities/models')
-rw-r--r--activities/models/post.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/activities/models/post.py b/activities/models/post.py
index b61abd4..f3b1879 100644
--- a/activities/models/post.py
+++ b/activities/models/post.py
@@ -4,6 +4,7 @@ from typing import Dict, Iterable, Optional, Set
import httpx
import urlman
from asgiref.sync import sync_to_async
+from django.contrib.postgres.indexes import GinIndex
from django.db import models, transaction
from django.template.defaultfilters import linebreaks_filter
from django.utils import timezone
@@ -187,6 +188,11 @@ class Post(StatorModel):
objects = PostManager()
+ class Meta:
+ indexes = [
+ GinIndex(fields=["hashtags"], name="hashtags_gin"),
+ ]
+
class urls(urlman.Urls):
view = "{self.author.urls.view}posts/{self.id}/"
object_uri = "{self.author.actor_uri}posts/{self.id}/"