/
phprus
/
git.tt-rss.org_fox_tt-rss
Обзор
Документация
Войти
/
phprus
/
git.tt-rss.org_fox_tt-rss
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sql/pgsql/migrations/8.sql
17 строк
835 B
Andrew Dolgov
wip for db_migrations for core schema
04 мар 2021, 08:30
04 мар 2021, 08:30
c0fb0a5
Код
Авторство
О чём код?
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_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); 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); insert into ttrss_filter_actions (id,name,description) values (3, 'mark', 'Set starred'); update ttrss_version set schema_version = 8; commit;