summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-03-04 17:53:02 +0300
committerAndrew Dolgov <[email protected]>2011-03-04 17:53:02 +0300
commitcfad9259a6feacfa8194b1312770ae6db1ecce50 (patch)
tree8880d54026cabee2e7a48c7ab38ef42db0fd0ab8 /schema/ttrss_schema_mysql.sql
parenta3ef7d106a9ee3c1be5e11f5f080508742162deb (diff)
mobile: allow showing category content inline (closes #315)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 7e9a5e761..c1d080e2e 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -258,7 +258,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_version values (78);
+insert into ttrss_version values (79);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,
@@ -389,6 +389,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,help_text) values('SORT_HEADLINES_BY_FEED_DATE', 1, 'true', 'Sort headlines by feed date',3, 'Use feed-specified date to sort headlines instead of local import date.');
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_MOBILE_BROWSE_CATS', 1, 'true', '', 1);
+
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),