]> git.wh0rd.org - tt-rss.git/blob - schema/upgrade-1.1.5-1.1.7-pgsql.sql
4c7c78f9d78765c09abee0de14808a9b1169e642
[tt-rss.git] / schema / upgrade-1.1.5-1.1.7-pgsql.sql
1 begin;
2
3 insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
4
5 insert 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
8 insert 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
10 insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
11 'Set starred');
12
13 update ttrss_version set schema_version = 8;
14
15 commit;