]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_mysql.sql
update translations
[tt-rss.git] / schema / ttrss_schema_mysql.sql
index 8ba72e8f488c4de5bc0ded1f1b9c28cb625d1c07..65e4ffb45ea29509cb49e17e5e048534d6a8837d 100644 (file)
@@ -1,5 +1,5 @@
--- SET NAMES utf8;
--- SET CHARACTER SET utf8;
+SET NAMES utf8;
+SET CHARACTER SET utf8;
 
 drop table if exists ttrss_user_labels2;
 drop table if exists ttrss_labels2;
@@ -213,19 +213,6 @@ create table ttrss_filters (id integer not null primary key auto_increment,
        index (action_id),
        foreign key (action_id) references ttrss_filter_actions(id) ON DELETE CASCADE) TYPE=InnoDB;
 
-create table ttrss_labels (id integer not null primary key auto_increment, 
-       owner_uid integer not null, 
-       sql_exp text not null,
-       description varchar(250) not null,
-       index (owner_uid),
-       foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
-
-insert into ttrss_labels (owner_uid,sql_exp,description) values (1,'unread = true', 
-       'Unread articles');
-
-insert into ttrss_labels (owner_uid,sql_exp,description) values (1,
-       'last_read is null and unread = false', 'Updated articles');
-
 create table ttrss_tags (id integer primary key auto_increment, 
        owner_uid integer not null, 
        tag_name varchar(250) not null,
@@ -237,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 (51);
+insert into ttrss_version values (54);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
@@ -368,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,help_text) values('ENABLE_OFFLINE_READING', 1, 'false', 'Enable offline reading',1, 'Synchronize new articles for offline reading using Google Gears.');
+
 create table ttrss_user_prefs (
    owner_uid integer not null,
    pref_name varchar(250),
@@ -392,20 +381,17 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
 
 create table ttrss_feedbrowser_cache (
        feed_url text not null,
+       title text not null,
        subscribers integer not null);  
 
 create table ttrss_labels2 (id integer not null primary key auto_increment, 
        owner_uid integer not null,
        caption varchar(250) not null,
+       fg_color varchar(15) not null default '',
+       bg_color varchar(15) not null default '',
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
 ) TYPE=InnoDB;
 
-INSERT INTO ttrss_labels2 (owner_uid, caption) VALUES (1, 'All Articles');
-
-INSERT INTO ttrss_filters (owner_uid, feed_id, filter_type, reg_exp, enabled, 
-    action_id, action_param, filter_param) 
-    VALUES (1, NULL, 1, '.', true, 7, 'All Articles', 'before');
-
 create table ttrss_user_labels2 (label_id integer not null,
        article_id integer not null,
        foreign key (label_id) references ttrss_labels2(id) ON DELETE CASCADE,