pull/225/head
SneedBot 2024-03-08 04:00:15 +00:00
parent 371ba764a5
commit f7c84c6713
1 changed files with 2 additions and 1 deletions

View File

@ -528,7 +528,8 @@ CREATE TABLE public.comments (
sharpened boolean NOT NULL,
num_of_pinned_children integer NOT NULL,
distinguished boolean NOT NULL,
body_ts tsvector GENERATED ALWAYS AS (to_tsvector('simple'::regconfig, (body)::text)) STORED
body_ts tsvector GENERATED ALWAYS AS (to_tsvector('simple'::regconfig, (body)::text)) STORED,
group_dm_ids integer[]
);