summaryrefslogtreecommitdiff
path: root/core/models
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-03-09 03:29:22 +0000
committerBharat Mediratta <bharat@menalto.com>2009-03-09 03:29:22 +0000
commit1ad7ca639ddb87af3755a4ac17ae5199fa5c4fc2 (patch)
treea44e94ad9bddd9bbe99c002550916d94ab7373f7 /core/models
parent445f18fb51a55102a95b6a1ffd388ee06ecd5041 (diff)
Make the description a text column so that we can handle much larger
descriptions.
Diffstat (limited to 'core/models')
-rw-r--r--core/models/item.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/item.php b/core/models/item.php
index 591d292e..f2fb8fa4 100644
--- a/core/models/item.php
+++ b/core/models/item.php
@@ -25,7 +25,7 @@ class Item_Model extends ORM_MPTT {
var $rules = array(
"name" => "required|length[0,255]",
"title" => "required|length[0,255]",
- "description" => "length[0,255]"
+ "description" => "length[0,65535]"
);
/**