summaryrefslogtreecommitdiff
path: root/util/updates/update_2.25.sql
diff options
context:
space:
mode:
Diffstat (limited to 'util/updates/update_2.25.sql')
-rw-r--r--util/updates/update_2.25.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/util/updates/update_2.25.sql b/util/updates/update_2.25.sql
index 8207adc6..bba0662b 100644
--- a/util/updates/update_2.25.sql
+++ b/util/updates/update_2.25.sql
@@ -49,3 +49,11 @@ ALTER TYPE prefs_key ADD VALUE 'traits_sexual';
CREATE TYPE board_type AS ENUM ('an', 'db', 'ge', 'v', 'p', 'u');
ALTER TABLE threads_boards ALTER COLUMN type DROP DEFAULT;
ALTER TABLE threads_boards ALTER COLUMN type TYPE board_type USING trim(type)::board_type;
+
+
+-- Full-text board search
+CREATE OR REPLACE FUNCTION strip_bb_tags(t text) RETURNS text AS $$
+ SELECT regexp_replace(t, '\[(?:url=[^\]]+|/?(?:spoiler|quote|raw|code|url))\]', ' ', 'g');
+$$ LANGUAGE sql IMMUTABLE;
+
+CREATE INDEX threads_posts_ts ON threads_posts USING gin(to_tsvector('english', strip_bb_tags(msg)));