1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 13:19:15 +00:00

schema: add ttrss_feeds.update_method, bump version

This commit is contained in:
Andrew Dolgov
2008-01-25 17:40:33 +01:00
parent e14a59be5a
commit 5b8534ef6c
5 changed files with 17 additions and 3 deletions

View File

@@ -0,0 +1,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;