]> git.wh0rd.org - tt-rss.git/blob - schema/versions/pgsql/61.sql
rework the way DEFAULT_ARTICLE_LIMIT works, remove limit toolbar dropdown (bump schema)
[tt-rss.git] / schema / versions / pgsql / 61.sql
1 begin;
2
3 update ttrss_prefs set short_desc = 'Amount of articles to display at once', help_text = '', def_value = '30' where pref_name = 'DEFAULT_ARTICLE_LIMIT';
4
5 update ttrss_user_prefs set value = '30' where pref_name = 'DEFAULT_ARTICLE_LIMIT' and value = '0';
6
7 update ttrss_version set schema_version = 61;
8
9 commit;