]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_mysql.sql
update translations
[tt-rss.git] / schema / ttrss_schema_mysql.sql
index 00e52479a39e5caf633fe6b63c2bafa7d8159a03..65e4ffb45ea29509cb49e17e5e048534d6a8837d 100644 (file)
@@ -1,6 +1,9 @@
--- 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;
+drop table if exists ttrss_feedbrowser_cache;
 drop table if exists ttrss_version;
 drop table if exists ttrss_labels;
 drop table if exists ttrss_filters;
@@ -17,6 +20,7 @@ drop table if exists ttrss_user_entries;
 drop table if exists ttrss_entries;
 drop table if exists ttrss_scheduled_updates;
 drop table if exists ttrss_counters_cache;
+drop table if exists ttrss_cat_counters_cache;
 drop table if exists ttrss_feeds;
 drop table if exists ttrss_feed_categories;
 drop table if exists ttrss_users;
@@ -62,7 +66,15 @@ create table ttrss_counters_cache (
        feed_id integer not null,
        owner_uid integer not null,
        value integer not null default 0,
-       foreign key (feed_id) references ttrss_feeds(id) ON DELETE CASCADE,
+       updated datetime not null,
+       foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
+);
+
+create table ttrss_cat_counters_cache (
+       feed_id integer not null,
+       owner_uid integer not null,
+       value integer not null default 0,
+       updated datetime not null,
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE
 );
 
@@ -179,6 +191,9 @@ insert into ttrss_filter_actions (id,name,description) values (5, 'publish',
 insert into ttrss_filter_actions (id,name,description) values (6, 'score', 
        'Modify score');
 
+insert into ttrss_filter_actions (id,name,description) values (7, 'label', 
+       'Assign label');
+
 create table ttrss_filters (id integer not null primary key auto_increment,
        owner_uid integer not null, 
        feed_id integer default null,
@@ -198,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,
@@ -222,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 (47);
+insert into ttrss_version values (54);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
@@ -353,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),
@@ -375,4 +379,23 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
        index (id), 
        index (expire)) TYPE=InnoDB;
 
+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;
+
+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,
+       foreign key (article_id) references ttrss_entries(id) ON DELETE CASCADE
+) TYPE=InnoDB;
+
 commit;