forked from e621ng/e621ng
db/structure.sql: add index_pools_on_name_trgm migration.
This commit is contained in:
parent
54b4a2e0c5
commit
cf9b67efb7
@ -6805,7 +6805,7 @@ CREATE INDEX index_pools_on_name ON pools USING btree (name);
|
||||
-- Name: index_pools_on_name_trgm; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE INDEX index_pools_on_name_trgm ON pools USING gin (name gin_trgm_ops);
|
||||
CREATE INDEX index_pools_on_name_trgm ON pools USING gin (lower((name)::text) gin_trgm_ops);
|
||||
|
||||
|
||||
--
|
||||
@ -7581,3 +7581,5 @@ INSERT INTO schema_migrations (version) VALUES ('20170413000209');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20170414005856');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20170414233426');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user