pull/225/head
SneedBot 2024-02-29 00:00:14 +00:00
parent b6b573aa2b
commit 119a91b642
1 changed files with 5 additions and 3 deletions

View File

@ -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
--