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;