function webform_update_6200 in Webform 6.3
Same name and namespace in other branches
- 6.2 webform.install \webform_update_6200()
Increase the size of the component instance name.
File
- ./
webform.install, line 523 - Webform module install/schema hooks.
Code
function webform_update_6200() {
$ret = array();
db_change_field($ret, 'webform_component', 'name', 'name', array(
'type' => 'varchar',
'length' => 255,
'default' => 'NULL',
));
return $ret;
}