FIX: Allow 1024 chars for keywords, not a mere 255

This commit is contained in:
Sam Minnee 2012-10-16 18:26:48 +13:00
parent 2ae5c497af
commit ef32310ef8

View File

@ -78,7 +78,7 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
"Content" => "HTMLText", "Content" => "HTMLText",
"MetaTitle" => "Varchar(255)", "MetaTitle" => "Varchar(255)",
"MetaDescription" => "Text", "MetaDescription" => "Text",
"MetaKeywords" => "Varchar(255)", "MetaKeywords" => "Varchar(1024)",
"ExtraMeta" => "HTMLText", "ExtraMeta" => "HTMLText",
"ShowInMenus" => "Boolean", "ShowInMenus" => "Boolean",
"ShowInSearch" => "Boolean", "ShowInSearch" => "Boolean",