mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #1334 from wilr/5611
FIX: Groups should be able to have titles longer than 50 characters
This commit is contained in:
commit
a1c5951d83
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user