You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
465 B
MySQL
14 lines
465 B
MySQL
9 years ago
|
BEGIN;
|
||
|
|
||
|
alter table ttrss_entries add column tsvector_combined tsvector;
|
||
|
create index ttrss_entries_tsvector_combined_idx on ttrss_entries using gin(tsvector_combined);
|
||
|
|
||
9 years ago
|
alter table ttrss_feeds add column feed_language varchar(100);
|
||
|
update ttrss_feeds set feed_language = '';
|
||
|
alter table ttrss_feeds alter column feed_language set not null;
|
||
|
alter table ttrss_feeds alter column feed_language set default '';
|
||
|
|
||
9 years ago
|
UPDATE ttrss_version SET schema_version = 128;
|
||
|
|
||
|
COMMIT;
|