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
296 B
MySQL
13 lines
296 B
MySQL
19 years ago
|
begin;
|
||
|
|
||
|
alter table ttrss_feeds add column rtl_content boolean;
|
||
|
|
||
|
update ttrss_feeds set rtl_content = false;
|
||
|
|
||
|
alter table ttrss_feeds alter column rtl_content set not null;
|
||
|
alter table ttrss_feeds alter column rtl_content set default false;
|
||
|
|
||
|
update ttrss_version set schema_version = 7;
|
||
|
|
||
|
commit;
|