]> git.wh0rd.org - tt-rss.git/blame - schema/obsolete/upgrade-1.1.5-1.1.7-pgsql.sql
add new shortcuts to catchup page (z) and feed (c)
[tt-rss.git] / schema / obsolete / upgrade-1.1.5-1.1.7-pgsql.sql
CommitLineData
e52d6bc4
AD
1begin;
2
94834216
AD
3insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
4
e52d6bc4
AD
5insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ON_CATCHUP_SHOW_NEXT_FEED', 1, 'false', 'On catchup show next feed',2,
6 'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');
7
c9268ed5
AD
8insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('FEEDS_SORT_BY_UNREAD', 1, 'false', 'Sort feeds by unread articles count',2);
9
78d5212c
AD
10insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('EXTENDED_FEEDLIST', 1, 'false', 'Show additional information in feedlist',2);
11
dd7d3187
AD
12insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
13 'Set starred');
14
94834216
AD
15update ttrss_version set schema_version = 8;
16
e52d6bc4 17commit;