8.sql 819 B

1234567891011121314
  1. insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
  2. 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,
  3. 'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');
  4. 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);
  5. insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('EXTENDED_FEEDLIST', 1, 'false', 'Show additional information in feedlist',2);
  6. insert into ttrss_filter_actions (id,name,description) values (3, 'mark',
  7. 'Set starred');
  8. update ttrss_version set schema_version = 8;