mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-03-22 19:32:40 +00:00
* 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>
4 lines
133 B
SQL
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);
|
|
|