summaryrefslogtreecommitdiff
path: root/schema/versions/pgsql/61.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-04 12:12:31 +0300
committerAndrew Dolgov <[email protected]>2010-01-04 12:12:31 +0300
commit6f068202d7e472be431ddde436e4623a6a6d20b9 (patch)
treedef3bc900dae12a7c409783b80c9c57703802d0c /schema/versions/pgsql/61.sql
parent938052bac8c59922706cc026ddb9644dc59b2646 (diff)
rework the way DEFAULT_ARTICLE_LIMIT works, remove limit toolbar dropdown (bump schema)
Diffstat (limited to 'schema/versions/pgsql/61.sql')
-rw-r--r--schema/versions/pgsql/61.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/schema/versions/pgsql/61.sql b/schema/versions/pgsql/61.sql
new file mode 100644
index 000000000..209a7ba55
--- /dev/null
+++ b/schema/versions/pgsql/61.sql
@@ -0,0 +1,9 @@
+begin;
+
+update ttrss_prefs set short_desc = 'Amount of articles to display at once', help_text = '', def_value = '30' where pref_name = 'DEFAULT_ARTICLE_LIMIT';
+
+update ttrss_user_prefs set value = '30' where pref_name = 'DEFAULT_ARTICLE_LIMIT' and value = '0';
+
+update ttrss_version set schema_version = 61;
+
+commit;