summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/31.sql
blob: 94cfc14d8f6f62c82c754b25e2b692108627282f (plain)
1
2
3
4
5
6
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;