1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-26 18:21:28 +00:00

new option: HIDE_READ_SHOWS_SPECIAL (bump schema)

This commit is contained in:
Andrew Dolgov
2008-01-21 09:30:54 +01:00
parent 7ddd770071
commit 22f3e356c8
7 changed files with 18 additions and 4 deletions

View File

@@ -203,7 +203,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 (28);
insert into ttrss_version values (29);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -318,6 +318,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('PURGE_UNREAD_ARTICLES', 1, 'true', 'Purge unread articles',3);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('HIDE_READ_SHOWS_SPECIAL', 1, 'true', 'Show special feeds when hiding read feeds',3);
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),