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.
7 lines
290 B
SQL
7 lines
290 B
SQL
alter table ttrss_feeds add column update_method integer;
|
|
update ttrss_feeds set update_method = 0;
|
|
alter table ttrss_feeds change update_method update_method integer not null;
|
|
alter table ttrss_feeds alter column update_method set default 0;
|
|
|
|
update ttrss_version set schema_version = 31;
|