summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1-1.1.1-pgsql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema/upgrade-1.1-1.1.1-pgsql.sql')
-rw-r--r--schema/upgrade-1.1-1.1.1-pgsql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/upgrade-1.1-1.1.1-pgsql.sql b/schema/upgrade-1.1-1.1.1-pgsql.sql
index 4ad609949..4645809c6 100644
--- a/schema/upgrade-1.1-1.1.1-pgsql.sql
+++ b/schema/upgrade-1.1-1.1.1-pgsql.sql
@@ -7,6 +7,7 @@ update ttrss_entries set num_comments = 0;
alter table ttrss_entries alter column num_comments set not null;
alter table ttrss_entries alter column num_comments set default 0;
-insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('COMBINED_DISPLAY_MODE', 1, 'false', 'Combined feed display, no headline/article separation',2);
+insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('COMBINED_DISPLAY_MODE', 1, 'false', 'Combined feed display',2,
+ 'Display expanded list of feed articles, instead of separate displays for headlines and article content');
commit;