Fix attribute_params column type.
authorJan Schneider <jan@horde.org>
Fri, 21 Jan 2011 17:16:22 +0000 (18:16 +0100)
committerJan Schneider <jan@horde.org>
Fri, 21 Jan 2011 17:16:29 +0000 (18:16 +0100)
turba/migration/3_turba_upgrade_sqlng.php

index 7aa24be..f1f6cfb 100644 (file)
@@ -37,7 +37,7 @@ class TurbaUpgradeSqlng extends Horde_Db_Migration_Base
         $t->column('perm_guest_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false));
         $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false));
         $t->column('attribute_desc', 'string', array('limit' => 255));
-        $t->column('attribute_params', 'string', array('limit' => 7));
+        $t->column('attribute_params', 'text');
         $t->end();
 
         $this->addIndex('turba_sharesng', array('share_name'));