mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-03 10:07:11 +00:00
more fts stuff for simple index
This commit is contained in:
8
schema/versions/pgsql/128.sql
Normal file
8
schema/versions/pgsql/128.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
BEGIN;
|
||||
|
||||
alter table ttrss_entries add column tsvector_combined tsvector;
|
||||
create index ttrss_entries_tsvector_combined_idx on ttrss_entries using gin(tsvector_combined);
|
||||
|
||||
UPDATE ttrss_version SET schema_version = 128;
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user