lemmy/migrations/2025-02-24-173152_search-alt-text-of-posts/down.sql
Draconic NEO 1a299ba628
Include image alt text in post search (#5449)
* Add Alt-Text Filter to post_view.rs

Added Alt-text filter to search

* Actually use the Alt-text filter I added

Add the call to actually use the alt-text filter I added.

* Create down.sql of migration

* Create up.sql

* Fixing SQL format.

---------

Co-authored-by: Dessalines <tyhou13@gmx.com>
2025-02-25 13:28:15 -05:00

4 lines
133 B
SQL

DROP INDEX idx_post_trigram;
CREATE INDEX IF NOT EXISTS idx_post_trigram ON post USING gin (name gin_trgm_ops, body gin_trgm_ops);