Merge pull request #1334 from wilr/5611

FIX: Groups should be able to have titles longer than 50 characters
This commit is contained in:
Ingo Schommer 2013-03-26 02:09:47 -07:00
commit a1c5951d83

View File

@ -8,12 +8,12 @@
class Group extends DataObject {
private static $db = array(
"Title" => "Varchar",
"Title" => "Varchar(255)",
"Description" => "Text",
"Code" => "Varchar",
"Code" => "Varchar(255)",
"Locked" => "Boolean",
"Sort" => "Int",
"HtmlEditorConfig" => "Varchar"
"HtmlEditorConfig" => "Text"
);
private static $has_one = array(