projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f4a1a3
)
Fix attribute_params column type.
author
Jan Schneider
<jan@horde.org>
Fri, 21 Jan 2011 17:16:22 +0000
(18:16 +0100)
committer
Jan Schneider
<jan@horde.org>
Fri, 21 Jan 2011 17:16:29 +0000
(18:16 +0100)
turba/migration/3_turba_upgrade_sqlng.php
patch
|
blob
|
history
diff --git
a/turba/migration/3_turba_upgrade_sqlng.php
b/turba/migration/3_turba_upgrade_sqlng.php
index
7aa24be
..
f1f6cfb
100644
(file)
--- a/
turba/migration/3_turba_upgrade_sqlng.php
+++ b/
turba/migration/3_turba_upgrade_sqlng.php
@@
-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'));