MINOR: extending Title to 255 characters to be in line with the Title on EditableFormField (caused internal server errors on MSSQL if the title was longer than 50)

This commit is contained in:
Mateusz Uzdowski 2009-11-24 20:11:50 +00:00
parent 6a039d4b8f
commit 0707279dec
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class SubmittedFormField extends DataObject {
static $db = array(
"Name" => "Varchar",
"Value" => "Text",
"Title" => "Varchar"
"Title" => "Varchar(255)"
);
static $has_one = array(