From 119a91b642e8045f9b1be3cc023155e860d748b1 Mon Sep 17 00:00:00 2001 From: SneedBot Date: Thu, 29 Feb 2024 00:00:14 +0000 Subject: [PATCH] sneed --- schema.sql | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/schema.sql b/schema.sql index 6802ab9eb..18eaf00c4 100644 --- a/schema.sql +++ b/schema.sql @@ -184,7 +184,8 @@ CREATE TABLE public.users ( group_creation_notifs boolean NOT NULL, effortpost_notifs boolean NOT NULL, shadowban_reason character varying(256), - keyword_notifs character varying(1000) + keyword_notifs character varying(1000), + offsite_mentions boolean ); @@ -459,8 +460,8 @@ CREATE TABLE public.comments ( queened boolean NOT NULL, sharpened boolean NOT NULL, num_of_pinned_children integer NOT NULL, - body_ts tsvector GENERATED ALWAYS AS (to_tsvector('english'::regconfig, (body)::text)) STORED, - distinguished boolean NOT NULL + distinguished boolean NOT NULL, + body_ts tsvector GENERATED ALWAYS AS (to_tsvector('simple'::regconfig, (body)::text)) STORED ); @@ -3067,3 +3068,4 @@ ALTER TABLE ONLY public.comments -- -- PostgreSQL database dump complete -- +