Changeset 808 for trunk/app/config

Show
Ignore:
Timestamp:
10/10/08 21:32:44 (8 weeks ago)
Author:
aarkerio
Message:

Little changes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/config/sql/postgresql/ts_index.sql

    r805 r808  
    11CREATE TEXT SEARCH DICTIONARY karamelo_es ( 
    2     template = snowball, 
    3     language = spanish, 
     2    template  = snowball, 
     3    language  = spanish, 
    44    stopwords = spanish 
    55); 
    66 
    77CREATE TEXT SEARCH CONFIGURATION public.karamelo_es ( COPY = pg_catalog.spanish );  
     8 
     9CREATE TEXT SEARCH DICTIONARY karamelo_en ( 
     10    template  = snowball, 
     11    language  = english, 
     12    stopwords = english 
     13); 
     14 
     15CREATE TEXT SEARCH CONFIGURATION public.karamelo_en ( COPY = pg_catalog.english );  
     16 
    817 
    918CREATE INDEX pgnews_idx ON news USING gin(to_tsvector('karamelo_es', body));