From 1475c00cfbc7ef06b58ede0d61a91f664ea69c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fikr=C4=81n=20Mutas=C4=81=27il?= <496890-khanzf@users.noreply.gitlab.com> Date: Sun, 12 Dec 2021 03:21:40 +0000 Subject: [PATCH] Removing comments from tables definition --- fedilogue/tables.sql | 3 --- 1 file changed, 3 deletions(-) diff --git a/fedilogue/tables.sql b/fedilogue/tables.sql index c626337..68ff439 100644 --- a/fedilogue/tables.sql +++ b/fedilogue/tables.sql @@ -23,9 +23,6 @@ CREATE TABLE IF NOT EXISTS instances ( software VARCHAR(50) ); --- ALTER TABLE activities ADD COLUMN normalized_tsvector tsvector; --- UPDATE activities SET normalized_tsvector = to_tsvector('english', normalized); - ALTER TABLE activities ADD normalized_tsvector tsvector GENERATED ALWAYS AS (to_tsvector('english', normalized)) STORED;