1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 16:31:28 +00:00

new option: MARK_UNREAD_ON_UPDATE (closes #76)

This commit is contained in:
Andrew Dolgov
2006-07-25 09:11:13 +01:00
parent ee09766cf7
commit 4919fb42c9
4 changed files with 32 additions and 8 deletions

View File

@@ -179,7 +179,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
insert into ttrss_version values (8);
insert into ttrss_version values (9);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null) TYPE=InnoDB;
@@ -251,6 +251,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('EXTENDED_FEEDLIST', 1, 'false', 'Show additional information in feedlist',2);
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);
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),