summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.5-1.1.7-pgsql.sql
blob: 4a2237a3f778f73c98ee535970b9c1787559a899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
begin;

insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');

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,
	'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');

insert into ttrss_filter_actions (id,name,description) values (3, 'mark', 
	'Set starred');

update ttrss_version set schema_version = 8;

commit;