]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_mysql.sql
update translations
[tt-rss.git] / schema / ttrss_schema_mysql.sql
index 6b003439f8585e553151e310b95fd2aec477a151..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;
@@ -16,6 +19,8 @@ drop table if exists ttrss_entry_comments;
 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;
@@ -57,6 +62,22 @@ create table ttrss_feed_categories(id integer not null primary key auto_incremen
        index(owner_uid),
        foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
 
+create table ttrss_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
+);
+
+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
+);
+
 create table ttrss_feeds (id integer not null auto_increment primary key,
        owner_uid integer not null,
        title varchar(200) not null, 
@@ -145,6 +166,8 @@ insert into ttrss_filter_types (id,name,description) values (3, 'both',
        'Title or Content');
 insert into ttrss_filter_types (id,name,description) values (4, 'link', 
        'Link');
+insert into ttrss_filter_types (id,name,description) values (5, 'date', 
+       'Article Date');
 
 create table ttrss_filter_actions (id integer not null primary key, 
        name varchar(120) unique not null, 
@@ -168,11 +191,15 @@ 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,
        filter_type integer not null,
        reg_exp varchar(250) not null,
+       filter_param varchar(250) not null default '',
        inverse bool not null default false,
        enabled bool not null default true,
        action_id integer not null default 1,
@@ -186,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 varchar(250) 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,
@@ -210,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 (41);
+insert into ttrss_version values (54);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
@@ -296,7 +310,7 @@ 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('CONFIRM_FEED_CATCHUP', 1, 'true', 'Confirm marking feed as read',3);
 
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('CDM_AUTO_CATCHUP', 1, 'false', 'Mark articles as read automatically',2,
-'This option enables marking articles as read automatically in combined mode while you scroll article list.');
+'This option enables marking articles as read automatically in combined mode (except for Fresh articles feed) while you scroll article list.');
 
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_DEFAULT_VIEW_MODE', 2, 'adaptive', '', 1);
 
@@ -339,6 +353,10 @@ 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_FLASH_PLAYER', 1, 'true', 'Enable inline MP3 player', 3, 'Enable the Flash-based XSPF Player to play MP3-format podcast enclosures.');
 
+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),
@@ -361,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;