fix mysql update script bug

This commit is contained in:
Andrew Dolgov 2006-08-17 04:05:49 +01:00
parent 147cfa48f8
commit 60a2080f9a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ alter table ttrss_feeds add column hidden bool;
update ttrss_feeds set hidden = false;
alter table ttrss_feeds change hidden rtl_content bool not null;
alter table ttrss_feeds change hidden hidden bool not null;
alter table ttrss_feeds alter column hidden set default false;
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('MARK_UNREAD_ON_UPDATE', 1, 'false', 'Set articles as unread on update',3);