Adds GIN index to tags table and deletes old total_tag_counts table
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 53s
Automated Main Deploy Action / build-and-deploy-docs (push) Successful in 20s

This commit is contained in:
2025-11-04 07:24:16 -05:00
parent 34648b4e16
commit 1e96eb3454
2 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1 @@
DROP TABLE total_tag_counts;

View File

@@ -0,0 +1 @@
CREATE INDEX ON tags USING gin (tag_text gin_trgm_ops);