1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 23:59:14 +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

@@ -163,7 +163,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
create table ttrss_version (schema_version int not null);
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);
@@ -231,6 +231,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 references ttrss_users(id) ON DELETE CASCADE,
pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,