mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-12 19:11:23 +03:00
3 lines
136 B
MySQL
3 lines
136 B
MySQL
|
CREATE EXTENSION IF NOT EXISTS pg_trgm;
|
||
|
CREATE INDEX trigram_index_users_on_github_login ON users USING GIN(github_login gin_trgm_ops);
|