mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-03-24 20:32:41 +00:00
5 lines
133 B
MySQL
5 lines
133 B
MySQL
|
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);
|
||
|
|