1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

new option: ENABLE_OFFLINE_READING (bump schema)

This commit is contained in:
Andrew Dolgov
2009-02-10 11:50:39 +03:00
parent 59b223d74d
commit 5de926d8cc
4 changed files with 9 additions and 10 deletions

View File

@@ -224,7 +224,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 (53);
insert into ttrss_version values (54);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -355,6 +355,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_ORDER_BY', 2, 'default', '', 1);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_OFFLINE_READING', 1, 'false', 'Enable offline reading',1);
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),