summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-10-29 08:46:08 +0100
committerAndrew Dolgov <[email protected]>2007-10-29 08:46:08 +0100
commit2918ff5eaa5b36bd2c516ade08101f491baa4c75 (patch)
tree793458b0fc3d1bd0c258d525304ef3ed7abc06ec /schema
parent5062b8400d83fd264fc84556ac2a72f1c5e5df7f (diff)
change ttrss_prefs.help_text type to varchar(250)
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index e27aee588..88f1080f9 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -219,7 +219,7 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
type_id integer not null,
section_id integer not null default 1,
short_desc text not null,
- help_text text not null default '',
+ help_text varchar(250) not null default '',
def_value text not null,
index(type_id),
foreign key (type_id) references ttrss_prefs_types(id),