function captcha_update_6203 in CAPTCHA 7
Same name and namespace in other branches
- 6.2 captcha.install \captcha_update_6203()
Implements of hook_update_N().
Rename the type field to captcha_type in captcha_points.
File
- ./
captcha.install, line 276 - Install, update and uninstall functions for the CAPTCHA module.
Code
function captcha_update_6203() {
$ret = array();
db_change_field($ret, 'captcha_points', 'type', 'captcha_type', array(
'type' => 'varchar',
'length' => 64,
));
return $ret;
}