summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-12-16 16:24:18 +0300
committerAndrew Dolgov <[email protected]>2009-12-16 16:24:18 +0300
commitb987df9a7f64b272a17b32112f0a62b4b2ef8bd0 (patch)
tree7a1bc0ca9612152383a3e2f9effb8ec60730a1f4 /schema/ttrss_schema_mysql.sql
parent97f31c4810f42e49394d43be6b8ce65a6b6f62d7 (diff)
parent7af0309b7b2c581573fa90ff345d08928b1eba69 (diff)
Merge branch 'master' of /home/fox/public_html/testbox/tt-rss
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 d3c8b5f15..04c601fae 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -226,7 +226,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 (57);
+insert into ttrss_version values (58);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -359,6 +359,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,help_text) values('ENABLE_OFFLINE_READING', 1, 'false', 'Enable offline reading',1, 'Synchronize new articles for offline reading using Google Gears.');
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_API_ACCESS', 1, 'false', 'Enable external API', 3);
+
create table ttrss_user_prefs (
owner_uid integer not null,
pref_name varchar(250),