mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
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:
parent
6a039d4b8f
commit
0707279dec
@ -9,7 +9,7 @@ class SubmittedFormField extends DataObject {
|
||||
static $db = array(
|
||||
"Name" => "Varchar",
|
||||
"Value" => "Text",
|
||||
"Title" => "Varchar"
|
||||
"Title" => "Varchar(255)"
|
||||
);
|
||||
|
||||
static $has_one = array(
|
||||
|
Loading…
Reference in New Issue
Block a user