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.
13 lines
405 B
PL/PgSQL
13 lines
405 B
PL/PgSQL
begin;
|
|
|
|
update ttrss_prefs set short_desc = 'Do not embed images in articles' where pref_name = 'STRIP_IMAGES';
|
|
|
|
alter table ttrss_feeds add column hide_images bool;
|
|
update ttrss_feeds set hide_images = false;
|
|
alter table ttrss_feeds change hide_images hide_images bool not null;
|
|
alter table ttrss_feeds alter column hide_images set default false;
|
|
|
|
update ttrss_version set schema_version = 106;
|
|
|
|
commit;
|