diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2005-12-20 16:58:39 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2005-12-20 16:58:39 +0100 |
| commit | 5238347d4370e9519b288a5128a6426dc1ceabd2 (patch) | |
| tree | 7ff28a7daee288d668832f346079e11db16256d9 /schema/ttrss_schema_mysql.sql | |
| parent | 734bec9e0954fccdb8861d98e218d02793e9fbda (diff) | |
new option: ENABLE_SEARCH_TOOLBAR
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
| -rw-r--r-- | schema/ttrss_schema_mysql.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 3d3187d72..ad90cc43d 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -229,6 +229,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu 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'); +insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_SEARCH_TOOLBAR', 1, 'false', 'Enable search toolbar',2); + create table ttrss_user_prefs ( owner_uid integer not null, pref_name varchar(250), |