Changeset 808 for trunk/app/config
- Timestamp:
- 10/10/08 21:32:44 (8 weeks ago)
- Files:
-
- 1 modified
-
trunk/app/config/sql/postgresql/ts_index.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/sql/postgresql/ts_index.sql
r805 r808 1 1 CREATE TEXT SEARCH DICTIONARY karamelo_es ( 2 template = snowball,3 language = spanish,2 template = snowball, 3 language = spanish, 4 4 stopwords = spanish 5 5 ); 6 6 7 7 CREATE TEXT SEARCH CONFIGURATION public.karamelo_es ( COPY = pg_catalog.spanish ); 8 9 CREATE TEXT SEARCH DICTIONARY karamelo_en ( 10 template = snowball, 11 language = english, 12 stopwords = english 13 ); 14 15 CREATE TEXT SEARCH CONFIGURATION public.karamelo_en ( COPY = pg_catalog.english ); 16 8 17 9 18 CREATE INDEX pgnews_idx ON news USING gin(to_tsvector('karamelo_es', body));
