2021-07-20 11:27:06 +03:00
|
|
|
DROP TABLE IF EXISTS word;
|
|
|
|
CREATE TABLE word_icu (
|
|
|
|
word_id INTEGER,
|
|
|
|
word_token text NOT NULL,
|
|
|
|
type text NOT NULL,
|
|
|
|
info jsonb
|
|
|
|
) {{db.tablespace.search_data}};
|
|
|
|
|
|
|
|
CREATE INDEX idx_word_word_token ON word
|
|
|
|
USING BTREE (word_token) {{db.tablespace.search_index}};
|
2021-07-20 12:21:13 +03:00
|
|
|
-- Used when updating country names from the boundary relation.
|
|
|
|
CREATE INDEX idx_word_country_names ON word
|
2021-07-20 13:11:12 +03:00
|
|
|
USING btree((info->>'cc')) {{db.tablespace.address_index}}
|
|
|
|
WHERE type = 'C';
|
|
|
|
-- Used when inserting new postcodes on updates.
|
|
|
|
CREATE INDEX idx_word_postcodes ON word
|
|
|
|
USING btree((info->>'postcode')) {{db.tablespace.address_index}}
|
2021-07-21 11:41:38 +03:00
|
|
|
WHERE type = 'P';
|
|
|
|
-- Used when inserting full words.
|
|
|
|
CREATE INDEX idx_word_full_word ON word
|
|
|
|
USING btree((info->>'word')) {{db.tablespace.address_index}}
|
|
|
|
WHERE type = 'W';
|
|
|
|
|
2021-07-20 11:27:06 +03:00
|
|
|
GRANT SELECT ON word TO "{{config.DATABASE_WEBUSER}}";
|
|
|
|
|
|
|
|
DROP SEQUENCE IF EXISTS seq_word;
|
|
|
|
CREATE SEQUENCE seq_word start 1;
|
|
|
|
GRANT SELECT ON seq_word to "{{config.DATABASE_WEBUSER}}";
|