]> git.wh0rd.org - tt-rss.git/blobdiff - schema/ttrss_schema_pgsql.sql
obsolete cookie storage for collapsed status of feedlist and special categories ...
[tt-rss.git] / schema / ttrss_schema_pgsql.sql
index 92aa72b72626d26d068bbdc678b5e6cdc393a183..0b6f719e14217a3de0948b9b19ba2e5db62a1114 100644 (file)
@@ -1,3 +1,6 @@
+drop table ttrss_user_labels2;
+drop table ttrss_labels2;
+drop table ttrss_feedbrowser_cache;
 drop table ttrss_version;
 drop table ttrss_labels;
 drop table ttrss_filters;
@@ -13,11 +16,14 @@ drop table ttrss_entry_comments;
 drop table ttrss_user_entries;
 drop table ttrss_entries;
 drop table ttrss_scheduled_updates;
+drop table ttrss_counters_cache;
+drop table ttrss_cat_counters_cache;
 drop table ttrss_feeds;
 drop table ttrss_feed_categories;
 drop table ttrss_users;
 drop table ttrss_themes;
 drop table ttrss_sessions;
+drop function SUBSTRING_FOR_DATE(timestamp, int, int);
 
 begin;
 
@@ -47,13 +53,14 @@ insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
 create table ttrss_feed_categories(id serial not null primary key,
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        collapsed boolean not null default false,
+       order_id integer not null default 0,
        title varchar(200) not null);
 
 create table ttrss_feeds (id serial not null primary key,
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        title varchar(200) not null, 
        cat_id integer default null references ttrss_feed_categories(id) on delete set null,
-       feed_url varchar(250) not null, 
+       feed_url text not null, 
        icon_url varchar(250) not null default '',
        update_interval integer not null default 0,
        purge_interval integer not null default 0,
@@ -71,6 +78,7 @@ create table ttrss_feeds (id serial not null primary key,
        last_viewed timestamp default null,
        last_update_started timestamp default null,
        update_method integer not null default 0,
+       always_display_enclosures boolean not null default false,
        auth_pass_encrypted boolean not null default false);    
 
 create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
@@ -81,6 +89,18 @@ insert into ttrss_feeds (owner_uid, title, feed_url) values
 insert into ttrss_feeds (owner_uid, title, feed_url) values 
        (1, 'Tiny Tiny RSS: Forum', 'http://tt-rss.spb.ru/forum/rss.php');
 
+create table ttrss_counters_cache (
+       feed_id integer not null,
+       owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
+       updated timestamp not null,
+       value integer not null default 0);
+
+create table ttrss_cat_counters_cache (
+       feed_id integer not null,
+       owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
+       updated timestamp not null,
+       value integer not null default 0);
+
 create table ttrss_entries (id serial not null primary key, 
        title text not null, 
        guid text not null unique, 
@@ -106,6 +126,8 @@ create table ttrss_user_entries (
        marked boolean not null default false,
        published boolean not null default false,
        last_read timestamp,
+       score int not null default 0,
+       note text,
        unread boolean not null default true);
 
 -- create index ttrss_user_entries_feed_id_index on ttrss_user_entries(feed_id);
@@ -132,6 +154,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, 
@@ -152,29 +176,23 @@ insert into ttrss_filter_actions (id,name,description) values (4, 'tag',
 insert into ttrss_filter_actions (id,name,description) values (5, 'publish', 
        'Publish article');
 
+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 serial not null primary key,    
        owner_uid integer not null references ttrss_users(id) on delete cascade,
        feed_id integer references ttrss_feeds(id) on delete cascade default null,
        filter_type integer not null references ttrss_filter_types(id), 
        reg_exp varchar(250) not null,
+       filter_param varchar(250) not null default '',
        enabled boolean not null default true,
        inverse boolean not null default false,
        action_id integer not null default 1 references ttrss_filter_actions(id) on delete cascade,
        action_param varchar(250) not null default '');
 
-create table ttrss_labels (id serial not null primary key, 
-       owner_uid integer not null references ttrss_users(id) on delete cascade,
-       sql_exp varchar(250) not null,
-       description varchar(250) not null);
-
-create index ttrss_labels_owner_uid_index on ttrss_labels(owner_uid);
-
-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 serial not null primary key, 
        tag_name varchar(250) not null,
        owner_uid integer not null references ttrss_users(id) on delete cascade,
@@ -184,7 +202,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
 
 create table ttrss_version (schema_version int not null);
 
-insert into ttrss_version values (33);
+insert into ttrss_version values (59);
 
 create table ttrss_enclosures (id serial not null primary key,
        content_url text not null,
@@ -215,7 +233,7 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
        access_level integer not null default 0,
        def_value text not null);
 
-insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_ICONS', 1, 'true', 'Enable icons in feedlist',3);
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_ICONS', 1, 'true', 'Enable feed icons',3);
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_OLD_DAYS', 3, '60', 'Purge old posts after this number of days (0 - disables)',1);
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('UPDATE_POST_ON_CHECKSUM_CHANGE', 1, 'true', 'Update post on checksum change',1);
 insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ENABLE_LABELS', 1, 'false', 'Enable labels',3,
@@ -264,7 +282,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);
 
@@ -298,6 +316,29 @@ 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('HIDE_FEEDLIST', 1, 'false', 'Hide feedlist',2, 'This option hides feedlist and allows it to be toggled on the fly, useful for small screens.');
 
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('VFEED_GROUP_BY_FEED', 1, 'false', 'Group headlines in virtual feeds',2,
+       'When this option is enabled, headlines in Special feeds and Labels are grouped by feeds');
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('SYNC_COUNTERS', 1, 'false', 'Prefer more accurate feedlist counters to UI speed',3);
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('STRIP_IMAGES', 1, 'false', 'Do not show images in articles', 2);
+
+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.');
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_API_ACCESS', 1, 'false', 'Enable external API', 3);
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_SPECIAL', 1, 'false', '', 1);
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_LABELS', 1, 'false', '', 1);
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_UNCAT', 1, 'false', '', 1);
+
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_COLLAPSED_FEEDLIST', 1, 'false', '', 1);
+
 create table ttrss_user_prefs (
        owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
        pref_name varchar(250) not null references ttrss_prefs(pref_name) ON DELETE CASCADE,
@@ -317,4 +358,23 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
 
 create index ttrss_sessions_expire_index on ttrss_sessions(expire);
 
+create function SUBSTRING_FOR_DATE(timestamp, int, int) RETURNS text AS 'SELECT SUBSTRING(CAST($1 AS text), $2, $3)' LANGUAGE 'sql';
+
+create table ttrss_feedbrowser_cache (
+       feed_url text not null primary key,
+       title text not null,
+       subscribers integer not null);  
+
+create table ttrss_labels2 (id serial not null primary key, 
+       owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
+       fg_color varchar(15) not null default '',
+       bg_color varchar(15) not null default '',
+       caption varchar(250) not null
+);
+
+create table ttrss_user_labels2 (
+       label_id integer not null references ttrss_labels2(id) ON DELETE CASCADE,
+       article_id integer not null references ttrss_entries(id) ON DELETE CASCADE
+);
+
 commit;