change ttrss_prefs.help_text type to varchar(250)
This commit is contained in:
parent
5062b8400d
commit
2918ff5eaa
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue