You are here

function captcha_update_6203 in CAPTCHA 6.2

Same name and namespace in other branches
  1. 7 captcha.install \captcha_update_6203()

Implementation of hook_update_N() Rename the type field to captcha_type in captcha_points.

File

./captcha.install, line 332
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;
}