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.
|
alter table ttrss_feeds add column rtl_content bool;
|
|
|
|
update ttrss_feeds set rtl_content = false;
|
|
|
|
alter table ttrss_feeds change rtl_content rtl_content bool not null;
|
|
alter table ttrss_feeds alter column rtl_content set default false;
|
|
|
|
update ttrss_version set schema_version = 7;
|
|
|