From: Andrew Dolgov Date: Mon, 29 Oct 2007 07:45:08 +0000 (+0100) Subject: change ttrss_prefs.help_text type to text X-Git-Tag: 1.2.17~47 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5062b8400d83fd264fc84556ac2a72f1c5e5df7f;p=tt-rss.git change ttrss_prefs.help_text type to text --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 181c49f4..e27aee58 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 varchar(300) not null default '', + help_text text not null default '', def_value text not null, index(type_id), foreign key (type_id) references ttrss_prefs_types(id),