1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00
ttrss/schema/versions/mysql/31.sql
2008-01-25 17:40:33 +01:00

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;