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